Skip to content Skip to sidebar Skip to footer

White Space Below Footer And Above On Re Sizing Window

I am getting white space above and below my footer ,there is a gap coming please check css is below .footer { background-image: url('../images/footer_image.png'); background-repe

Solution 1:

I saw a body margin of 8px in your site. Add this or remove existing.

body{
margin:0;
padding:0;
}

Your body margin

Error enter image description here


Solution 2:

There is a margin of 8px on the body of the page.

I see in the my style.txt you have added

!important .body
{ margin:0 !important; 
 padding:0 !important; 
}

This needs to be:

body
{ 
margin:0 !important; 
padding:0 !important; 
}

Post a Comment for "White Space Below Footer And Above On Re Sizing Window"