Hi there, I recently posted a question about centering a page with CSS. I figured out how to do that and it looks great, but now, there is a bunch of unnecessary space at the bottom of my page. I can't figure out how to get rid of it.
I uploaded it to a quick free webhost so you guys can take a look. This is what I'm trying to work with: http://eric.200u.com/index.html
This is my CSS regarding the centering of the page:
html, body
{
padding: 0;
margin: 0;
}
#container
{
width: 700px;
margin: 0 auto;
text-align: left;
}