I can't figure out why the white background does not expand along with the most bottom divs.
Check it out here: http://dl.dropbox.com/u/4439012/lppage.html
insert a new style:
.w {clear:both;}
then include a new div before the closing div:
<div id="newcontent">
... your content...
<div class="w"></div>
</div>
http://stackoverflow.com/questions/2...-floating-divs
Thanks.
I've never seen this problem before with all the previous LPs I've worked on.
I've never used the clear element before because I never understood its usage.
Yeah that's a pretty common CSS issue when you are messing with different block and inline div's. The clear should work in just about every case.