After successfully centering a page with CSS, I am now faced with an issue of excess space at the bottom that I can't seem to eliminate. If anyone could take a look at my webpage hosted for free here: , it would be greatly appreciated.
Below is the CSS code I used in attempting to center the page:
html, body
{
padding: 0;
margin: 0;
}
#container
{
width: 700px;
margin: 0 auto;
text-align: left;
}