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

CSS How to Make a Website Customizing Colors and Fonts Write Hexadecimal Colors

what is that i missed in this?

please help

css/main.css
a {
  text-decoration: none;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
}

#logo {
  text-align: center;
  margin: 0;
}
h1, h2 {
color: #FFF;
}
p {
color: #000;
}
nav a  {
color: #fff;
}
a:hover {color: #32763f;}
Wayne Priestley
Wayne Priestley
19,579 Points

Hi,

What is the code challenge asking?

Ben Attenborough
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Ben Attenborough
Front End Web Development Techdegree Graduate 32,769 Points

For the last challenge it wants you to style the links in nav only. So nav a:hover {color: #32673f;}

The wording of the challenge should be changed to reflect this.

2 Answers

Wayne Priestley
Wayne Priestley
19,579 Points

There is your problem, in your code you have #32763f in the question it has #32673f

Hope this helps.

Ben Attenborough
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Ben Attenborough
Front End Web Development Techdegree Graduate 32,769 Points

It's How To Make A Website / Customizing Colors and Fonts - Write Hexadecimal Colors code challenge http://teamtreehouse.com/library/write-hexadecimal-colors

The question was:

Add a hover state for navigation links that changes the text color to the value #32673f

the correct hex code is #32673f

I've just checked this and it passed.

Reading that question again, it does in fact make sense, but when I first did it I also just styled all links instead of just the nav links. Perhaps the question could be reworded to say "Add a hover state for anchor elements inside the nav element that changes the text color to the value #32673f". This would also be consistent with the previous question.