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 Adding Pages to a Website Add and Style Icons

add 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

What exactly does not work? I just tried it myself and it seems fine

here 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; }

It 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"

Actually just the class ".contact-info" is fine already

In this case, it's fine. This challenge is a little more forgiving. I've seen other challenges that require the type qualified selector.

Hey Jason, Yep, I do agree to 100%!