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

HTML How to Make a Website Adding Pages to a Website Add a New Page

nav bar

i am not sure how to make the "portfolio. about.." different colors when you scroll over them

3 Answers

Do you mean the <a> links whilst hovering over?

If so, use the following CSS

a:hover { color:blue; }

Replacing blue with the color of your choice :)

Also if the a is nested within a nav you can use nav a:hover or put an id or a class on it :)

thanks! i figured it out my header text was the same color as my hover color :)

Ahh, simple mistake to make,

Best thing to check things like that is firebug in Firefox ( my preference) Or chrome dev tools, makes it easy to see what's going on :) good luck with the rest of it!