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

WordPress How to Make a Website with WordPress Customizing WordPress Themes Customizing WordPress Theme Files

Michel Frechette
Michel Frechette
10,551 Points

I'm not getting the results as demonstrated.

The bar is black, but the About text is red and white when I hover over it. What's the problem?

4 Answers

Andrew McCormick
Andrew McCormick
17,730 Points

can you paste in your css for the .nav-menu li a elements

Michel Frechette
Michel Frechette
10,551 Points

This is the line of code that should render the color white, but the color I am getting is red. When I hover over About the color turns from red to white. .nav-menu li a { color: #fff; }

It sounds like you've got another element in your style.css that may be overriding the .nav-menu li a. Can you post your whole CSS file?

Michel Frechette
Michel Frechette
10,551 Points

@import "../twentythirteen/style.css";

.navbar { background-color: #220e10; }

.nav-menu li a { color: #fff; }