Forums

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

Home Forums CSS Empty background space Re: Empty background space

#73107
Lynz
Member

These suggestions should work, but they probably are not because you have your footer div OUTSIDE of your #wrapper. The wrapper div should ALWAYS contain ALL content of the page, and then it should work. It is easy to lose track of your divs, especially when you have an excess of them (which you do). Therefore it is really helpful to label each div that you close with a comment. For example:

<div id="wrapper">
all page content here, including footer
</div> <!– end #wrapper–>

This way you can see which div is closed where and they are easier to keep track of. Hope this works for ya!