Reputation: 57
I have a webpage - http://bit.ly/YHFX5B and if you take a look at the footer you will see that there are a few extra white pixels/lines after it. I can't understand where they are coming from.
Please advice where they could be coming from.
Thank you, Dan
Upvotes: 2
Views: 75
Reputation: 23548
it's caused by padding in this style:
#footer a {
padding: 4px 4px 4px 0;
}
change it to
#footer a {
padding: 4px 4px 2px 0
}
Upvotes: 0