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 trialGabriel Kierkegaard
744 PointsHi, I have set the class .social-links with the padding: 15px; and margin: 10px; but it still says I have to set it.
I've checked the teamtreehouse communit forums for help and I can't see I'm doing anything wrong.
Hi, I have set the class .social-links with the padding: 15px; and margin: 10px; but it still says I have to set it.
<!doctype html>
<html>
<head>
<title>List Example</title>
<link ="stylesheet" href="styles.css">
</head>
<body>
<a class = "social-links"rel href="#">Follow me on Twitter!</a>
<a class = "social-links"rel href="#">Send me an Email!</a>
</body>
</html>
.social-links {
padding: 15px;
margin: 10px;
}
2 Answers
Justin Horner
Treehouse Guest TeacherHello Gabriel,
The CSS in styles.css is correct but there are some issues in the index.html file. I noticed that your link element in the header is missing the "rel" attribute name.
<link ="stylesheet" href="styles.css">
Should be
<link rel="stylesheet" href="styles.css">
There are spaces on both sides of the equals sign when setting the class attribute on your anchor elements. There's also a hanging "rel" attribute after "social-links".
<a class = "social-links"rel href="#">Follow me on Twitter!</a>
<a class = "social-links"rel href="#">Send me an Email!</a>
Should be
<a class="social-links" href="#">Follow me on Twitter!</a>
<a class="social-links" href="#">Send me an Email!</a>
Once these issues are resolved, you will pass the challenge! I hope this helps.
Gabriel Kierkegaard
744 PointsYes that helped thank you.
Justin Horner
Treehouse Guest TeacherYou're welcome!