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 trialHadi Farhat
Courses Plus Student 7,102 Pointssmall 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
Eric Conklin
8,350 PointsSame. If we can't see your code we can't really help you.
2 Answers
Paulius Vitkus
24,230 PointsHadi, that's default behaviour of your browser. You can erase those borders with CSS, like :
img {
border: 0;
}
Sam Deacon
2,650 Pointsits 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;
}
Chyno Deluxe
16,936 PointsChyno Deluxe
16,936 Pointsplease post a link to your workspace so that I can better assist you.