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

Add a hover state for navigation links that changes the text color to the value #32673f.

I do not know what is the correct solution :(

I've tried everything :///

Any idea pls?

6 Answers

Shane Meikle
Shane Meikle
13,188 Points

Add this code to the challenge:

nav a:hover { color: #32673f; }

It works for me.

Shane Meikle
Shane Meikle
13,188 Points

a:hover { color: #32673f ; }

Should work. What code are you using to try it?

dont work :( /Bummer! Did you style nav links hover state (:hover)?/

but the right is obviously

nav a{color: #fff;} nav a.selected, nav a:hover {color: #32673f;}

Brian Kellione
Brian Kellione
1,424 Points

Did you ever get this one correct? I cant get it right.....

Eric Tan
Eric Tan
5,340 Points

The correct solution is this

nav a:hover { color: #32673f; }

Eric Tan
Eric Tan
5,340 Points

Please check your color code or any spelling error ! Happened to me.

amathiaitishar
amathiaitishar
13,229 Points

Well, you just follow the instructions :

1) changing the color of h1, h2 to white. h1,h2, { color: #fff; }

2) Changing color of paragraphs to black. p { color: #000; }

nav a, nav a:visited { color: #fff; } nav a, nav a:hover{ color:#32673f; }

That worked for me :)