here is a JS Fiddle
I have already tried a couple of different things such as body { margin:0; padding:0;}
it doesn't work
body {
margin: 0;
width: 100%;
height: 3000px;
}
here is a JS Fiddle
I have already tried a couple of different things such as body { margin:0; padding:0;}
it doesn't work
body {
margin: 0;
width: 100%;
height: 3000px;
}
Look at the header margin:
#header {
width: 100%;
/*margin: 20px 0;*/
z-index: 1;
}
The space comes from this. Delete it.
this is called Margin Collapsing.. try replacing this..
#header {
width: 100%;
z-index: 1;
}
FIDDLE and refer this for Detailed Answer