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 trialFrankie Guerra
3,739 PointsKeep getting Bummer! set font size to 0.9em. Not sure why this is happening. Please help!
.contact-info { font-size: 0.9 em; list-style: none; padding: 0; margin: 0; }
4 Answers
Andrew McCormick
17,730 Pointsyou've got a space in you font-size between the property and the units: font-size: 0.9 em
should be font-size: 0.9em
Michael Russell
7,332 PointsIt looks like you have a space between "0.9" and "em" , which would cause a syntax error. I tried your code in the challenge and I also received a 'bummer'. However, when eliminating the space between the ".contact-info" and the '{' as well as the space between '0.9' and 'em', the code passed the challenge.
Frankie Guerra
3,739 PointsThanks! it worked
Andrew Pierre
1,218 PointsI had the same issues, what I did was copy the word .contact-info from the code challenge, and followed the directions, and it worked. Hope this helped.
Update: This cause another problem to occur in the next stage, so I refresh the page and followed the direction and it worked.