Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Creating HTML Content Build the Footer

Hadi Farhat
PLUS
Hadi Farhat
Courses Plus Student 7,102 Points

small blue line appears between the facebook and the twitter logos

I just typed the exact code as Nick did, but a strange small blue line appeared between the twitter and the facebook logos

please post a link to your workspace so that I can better assist you.

Same. If we can't see your code we can't really help you.

2 Answers

Paulius Vitkus
Paulius Vitkus
24,230 Points

Hadi, that's default behaviour of your browser. You can erase those borders with CSS, like :

img {
  border: 0;
}
Sam Deacon
Sam Deacon
2,650 Points

its actually the good ol anchor text decoration (things like this were just designed to trip designers up!)

a {
  text-decoration: none;
}

or something more specific like

footer a {
  text-decoration: none;
}