Some of the default templates (like Ocean) have the following entry in the CSS code -
CODE
div#wrapper {
margin-bottom:10px;
margin-top:10px;
}
Which is likely causing what you are seeing. My recommendation is to add your own custom CSS file with the following.
CODE
div#wrapper {
margin-bottom: 0px;
margin-top: 0px;
}
This should remove the white space. I hope this helps.