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 trialaltonoser
7,771 Pointsadd and style icons code challenge not working
is anyone else having this problem? it's the only thing i have left on this track to do so I can move on to another one.
5 Answers
Torsten Voll
5,045 PointsWhat exactly does not work? I just tried it myself and it seems fine
altonoser
7,771 Pointshere is what I am inputting. I think it is correct, but it keeps telling me to make sure i am making the font-size to 0.9em. Am I doing something wrong?
.contact-info li { font-size: 0.9em; margin: 0; padding: 0; list-style: none; }
Jason Anello
Courses Plus Student 94,610 PointsIt wants you to select the unordered list with that class of "contact-info"
You're trying to select the list items nested inside that "contact-info" element.
ul.contact-info
would select an unordered list that has a class of "contact-info"
Torsten Voll
5,045 PointsActually just the class ".contact-info" is fine already
Jason Anello
Courses Plus Student 94,610 PointsIn this case, it's fine. This challenge is a little more forgiving. I've seen other challenges that require the type qualified selector.
Torsten Voll
5,045 PointsHey Jason, Yep, I do agree to 100%!