Hi all,
Im using the below.
It's supposed to enable a left column with a content area that has a right column.
My problem is the footer.
I think it is in the flow of things however when I add more code to the left column, I am expecting the footer to drop in relation to the content that is entered. This is nt happenning and the flow seems to be lost consequently shunting the footer div to the right of the left colum.
Theres not much code and if someone could look at it it woul dbe really appreciated.
Cheers
Code:
<div>
<div style="width:750px;">
<div id="leftColumn" style="width:170px;background-
color:red;float:left;">
<!-- left side here Want to add divs here but when you do, the footer
doesnt move? Why? im sure i have a lfow only going on here -->
</div>
<!-- right side of page before footer -->
<div style="width:580px;float:right;">
<div style="background-color:red;float:left;"></div>
<div style="width:160px;background-
color:red;float:right;">right</div>
<p>middle</p>
</div>
</div>
<div id="bgfooter" class="footer">FOOTER HERE</div>
</div>
|