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 trialArtful Wisdom
Courses Plus Student 6,506 Pointstask 3 of the challenge
Set the color of anchor elements inside the nav element to white using a hexadecimal value. Is what I'm suppose to do so i wrote out
nav a { color: #fff; }
and when i look back on the video it show i was right in my judgement.....so what exactly am I doing wrong here please help lol
2 Answers
Jason Anello
Courses Plus Student 94,610 PointsThere must be something else going on then.
This passes for me:
nav a {
color: #fff;
}
I can't see any difference.
Can you post all the css that you've entered up to this point?
Double check that you have a closing curly brace for your paragraph rule above this one.
Alexander Mahler
3,835 PointsI had the same issue, make sure you have the p tag closed. Mine worked fine after that.