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 trialRory Mckane
880 PointsStuck with changin font size to 0.9em during test. Help!
Hi, I have entered the following when told to change the font size to 0.9em;
.contact-info ul { font-size: 0.9em; margin: 0; padding: 0; list-style: 0; }
This is correct as far as I can tell, but when I check work I get an annoying 'Bummer! Be sure to set the font size to 0.9em'
Can anybody help/tell me where I'm going wrong?
Thanks
1 Answer
Erik Cruz
9,772 PointsIt looks like it might just want .contact-info not .contact-info ul
like this:
.contact-info {
min-height: 20px;
background-repeat: no-repeat;
list-style: none;
margin: 0;
padding: 0;
font-size: 0.9em;
}
Iain Simmons
Treehouse Moderator 32,305 PointsFYI, I changed your comment to an answer. Good spotting!
Rory Mckane
880 PointsRory Mckane
880 PointsThanks Erik, found thee solution a couple minutes after I posted! Thanks!