vote up 1 vote down star

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?

flag

1 Answer

vote up 5 vote down check

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.

link|flag
I feel SO stupid! Thanks! – Daniel S May 10 at 13:58
No problemo :-) – Sam152 May 10 at 13:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.