views:

868

answers:

1

Hey!

In my current simple project, Copybin, there is some space at the bottom of the page that I cannot seem to be able to remove it. Any ideas?

+5  A: 

You have the following CSS on your page:

body {
    padding:0;
    margin:0;
    background-color:#eef8ff;
    min-width:950px;
    min-height:975px;
}

Remove your min-height:975px;. This will allow your page to expand to whatever height it requires. I measured your page up and its exactly 975 pixels high.

Sam152
I feel SO stupid! Thanks!
Daniel S
No problemo :-)
Sam152