|
You are floating your columns. At the end you need to put in a block and clear: both
You can use
<br style="clear: both"/>
or use
<div id="footer">And put in information here</div>
#footer {
clear: both;
}
This will bring the background all the way to the end of the content. It doesn't work with out this because you've taken the coulumns out of the flow of the document by floating them.
|