Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS New Site, New Problems Re: New Site, New Problems

#69230
TheDoc
Member

For the footer, it is because it doesn’t have a declared height and all items within it are being floated. The best thing to do in this case is to add a clearing div after your floated items, and before the footer div gets closed.

You can pop this in there:

<div style="clear:both;"></div>

I’m not exactly sure what you’re asking in the first question.