Reputation: 6739
I am having an issue in removing the white space after footer.Here is my website: https://www.filterbypass.me/
I tried googling and added padding:0;
to the footer css but its didn't work.
Thanks in advance for the help
Upvotes: 0
Views: 4270
Reputation: 1237
in combine.css see footer class
footer{
background: none repeat scroll 0 0 #1E1E1E;
color: #FFFFFF;
font-family: 'sansationregular';
height: 36px; /*comment this if you want to keep line-height*/
line-height: 40px;
margin-top: 45px;
width: 100%;
}
Upvotes: 0
Reputation: 3106
See your footer class
background: none repeat scroll 0 0 #1E1E1E;
color: #FFFFFF;
font-family: 'sansationregular';
height: 36px; // ? 36 height
line-height: 40px; // Here the problem 40 line height
margin-top: 45px;
width: 100%;
}
Make it line-height: 36px; And Think simple...
Upvotes: 1
Reputation: 2673
You have defined a height:36px;
to <div id="footer">
in combine.css
at line 246
.
This is the problem
Upvotes: 0