Home › Forums › CSS › Empty background space › Re: Empty background space
March 28, 2010 at 12:25 am
#73107
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!