Remove empty space after HTML body
See here for the original answer.
I can help! The problem is the height of your body, which can be solved with the following CSS:
body {
min-height: 100%;
}
Then to give the appearance of no empty space, you can position your footer element all the way at the base of the page, like so:
footer {
position: fixed;
bottom: 0;
width: 100%;
}