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

CSS How to Make a Website Adding Pages to a Website Add and Style Icons

Rory Mckane
Rory Mckane
880 Points

Stuck 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

Rory Mckane
Rory Mckane
880 Points

Thanks Erik, found thee solution a couple minutes after I posted! Thanks!

1 Answer

Erik Cruz
Erik Cruz
9,772 Points

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

FYI, I changed your comment to an answer. Good spotting!