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 trialFikreyesus Desta
4,009 Pointswhat is that i missed in this?
please help
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;}
Ben Attenborough
Front End Web Development Techdegree Graduate 32,769 PointsFor 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
19,579 PointsThere is your problem, in your code you have #32763f
in the question it has #32673f
Hope this helps.
Wayne Priestley
19,579 PointsBen,
Whats the correct hex code needed then?
He really should have pasted the question in the post.
Ben Attenborough
Front End Web Development Techdegree Graduate 32,769 PointsIt'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.
Ben Attenborough
Front End Web Development Techdegree Graduate 32,769 PointsI could edit my original response as well if that helps make this clearer
Wayne Priestley
19,579 PointsI'd just leave it Ben, He can scroll down to see your answer.
Wayne Priestley
19,579 PointsWayne Priestley
19,579 PointsHi,
What is the code challenge asking?