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 trialDanilio Moreno
929 PointsCant turn the word Portfolio to dark green using class attribute to show which page you are on.
The word Portfolio only changes dark green when I hover over with a cursor as do the About and Contact. Those two are fine, but Portfolio should be dark green without hovering over it.
Here is what I wrote in HTML: <li><a href="index.html" class="selected">Portfo#lio</a><li>
Here is what I wrote in main CSS: nav a.selected, nav a:hover { color: #32673f; }
3 Answers
Jovanny Elias
16,204 Pointshave you checked to see that the selected class is on your HTML is only on your portfolio link?
Danilio Moreno
929 PointsYes the selected class is only on my Portfolio link
Danilio Moreno
929 Points<li><a href="index.html" class="selected">Portfolio</a><li>