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?
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?
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.