user1508711
user1508711

Reputation: 57

Extra white lines/pixels

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

Answers (3)

rails_id
rails_id

Reputation: 8220

on #footer change padding to

padding: 20px 0 15px 0;

Upvotes: 2

zxqx
zxqx

Reputation: 5205

Add this to your #footer element:

#footer {
  overflow: hidden;
}

Upvotes: 0

abbood
abbood

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

Related Questions