ok I am having this small issue with CSS. I have a menu div that is height 100% and needed to use the following to get it to work
#menu {
background:#222;
width:120px !important;
float:left;
position: absolute;
top: 30px;
bottom: 0px;
}
on my content area I have this CSS
#content {
float:left;
display:block;
height:300px !important;
background:#333;
width:100%;
}
as you will see the content is under the menu which is what I dont want. I want it to be next to the menu flushed left.
Did you try something like the following one: