i have a webpage, scrollbar is not needed but still i get a scroll bar.
and i get a section which is outside of the html tags.
there is a brown part color of the body which appear outside of the html
i use firebug and when i put my mouse over the html tag it highlight the entire page except
the brown part at the bottom
the page url is link
here is a picture the page bottom should be the black part.

The trouble here is your
<div id="filter_list" class="dd_list">. Although you’ve setoverflow: hidden;you haven’t given a height for the box, so it gleefully scrolls down the page, including well past the bottom of your regular content.Set
height: 100px;(or however big you need it to be) and the rest of the page layout will return to normal.