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 trialDaniel Hacker
1,622 PointsWhy is it not allowing me to move on when I have clearly set the font size to 0.9em?
I am getting the red line of death saying that I have not set the font size to 0.9em. I have done this, but for some reason I can't move on to the next challenge.
4 Answers
Daniel Lute
3,043 PointsMight need fix the way you use selector such as:
ul.contact-info instead of .contact-info ul
Jon Benson
12,168 PointsTypically a missing semicolon, or perhaps another stray punctuation mark? Print your code here if you can't find it.
Daniel Hacker
1,622 PointsHere is the challenge:
Challenge task 1 of 5
Select the unordered list with the class contact-info and set the font size to 0.9em. Then, remove all margin, padding, and list styling.
Here is my code:
.contact-info ul { font-size: 0.9em; margin: 0; padding: 0; list-style: none; }
What am I not seeing?
Thanks.
Daniel Hacker
1,622 PointsDaniel,
That worked. It wasn't the way we were doing it in the tutorial, but it did work. Thank you. Thanks everyone who responded.
Jeff Busch
19,287 PointsJeff Busch
19,287 PointsCan we see your code?