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 Write Hexadecimal Colors

lost again

how set the anchor and nav color

1 Answer

Maximiliane Quel
PLUS
Maximiliane Quel
Courses Plus Student 55,489 Points

I really think you need to go back and watch how to select elements in css again. it is absolutely rudimentary and if you don't understand the principle you are not going to be able to understand the rest of the course.

you need to use a descendent selector because the anchor is inside the nav element. this is what you should come up with:

nav a {
    color: #fff;
}

again. if I was you, I would take a step back and look at the different css selectors again

thank you i got it