I've read every post and google result about footer's height but I'm not able to fix this issue.
You can see my index here: http://adamaweb.com/faqme/ As you can see, I want the footer extends to the end of the page. It's not a sticky footer, I just want it to extend. But when you load the web you can see a big vertical scroll.
I thinks it appears because of the height:100% in the footer. It is possible to extend the footer without the scroll issue?
overflow: hidden;instead ofheight: 100%;– Andy Dec 3 '12 at 14:08#footer { clear: both; height: 75px; position: fixed; bottom: 0; width: 100%; padding: 50px 210px; background-color: black; }or dooverflow:hidden– J.Wells Dec 3 '12 at 14:10