Footer has a space between it and body

PixelPusher

Super Moderator
Staff member
Being that there is nothing other that "coming Soon" on this page, I am taking a stab in the dark here....

In your css file, be sure to clear the margins and padding for both the html and body tag. This will allow elements to sit flush with the edge of the browser window if so desired.

Code:
html, body {
margin:0;
padding:0;
}
 
Top