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 trialJozef Balun
465 PointsAdd 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
13,188 PointsAdd this code to the challenge:
nav a:hover { color: #32673f; }
It works for me.
Shane Meikle
13,188 Pointsa:hover { color: #32673f ; }
Should work. What code are you using to try it?
Jozef Balun
465 Pointsdont 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
1,424 PointsDid you ever get this one correct? I cant get it right.....
Eric Tan
5,340 PointsThe correct solution is this
nav a:hover { color: #32673f; }
Eric Tan
5,340 PointsPlease check your color code or any spelling error ! Happened to me.
amathiaitishar
13,229 PointsWell, 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 :)