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 Customizing Colors and Fonts Use Color in CSS

Liviu Tudor
Liviu Tudor
7,061 Points

why in my workspace I have decorations on lists and Nick is NOT...!?!?!?

why i have decorations on my lists in navigation . i know that it can be removed with text-decoration but i followed the same steps as Nick and i sill have them.. :(

try to target the navigation list more specific like this

.main-nav ul li {
 text-decoration: none;
}

OR

.main-nav li a {
 text-decoration: none;
}

change .main-nav if it isnt your class name

2 Answers

Hi Liviu,

Not sure the reason or if you've reached this stage but if it helps, at around 3:29 in this video he discusses it.

-Rich

Liviu Tudor
Liviu Tudor
7,061 Points

i didnt get there yet... i am still on the Use Color in CSS stage but Nick's page doesnt have the Black Decoration Bullets on the nav link while... my nav has them... i double check the entire code again and again...

now i checked the NORMALIZE.CSS style sheet... i have the : <bold>normalize.css v3.0.2 | MIT License | git.io/normalize</bold>

while Nick has :

<bold>normalize.css v1.1.0 | MIT License | git.io/normalize</bold>

is there smething that I missed out in those files ?