Hi,
I didn't see any whitespace but you have made some mistakes in the sticky footer. See the css faq (in my sig) for a full rundown on how the sticky footer works. (Note that the site Force Flow linked to above is using most of my code but not the latest version.
)
You have dragged the sticky footer up by 100px which means it will overlap content by 100px so you have to soak the space up somehow. Without changing all your code you could do something like this:
Code:
#main{padding-bottom:100px}
#colophon {overflow: hidden;}
Note that you have given your footer a height of 100px and then in the very next rule you have placed another element that is 100px and has 6px top padding! How can that fit? You must make sure everything fits and the footer needs to be an exact height for the sticky footer technique to work. Remember the height will also include any margins on inner elements also so make sure you set the bottom margins of any p elements or headings to zero in the footer.
The css faq contains the full details and newest version for all browsers so check there if you need some clarification.
Bookmarks