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 trialSergio Faura
351 PointsAdd a hover state for navigation links that changes the text color to the value #32673f.
a :hover { color: #32673f; }
a
{
text-decoration: none;
}
a :hover
{
color: #32673f;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
p
{
color: #000;
}
h1
{
color: #ffffff;
}
h2
{
color: #ffffff;
}
nav a
{
color: #ffffff;
}
2 Answers
Philip Gales
15,193 PointsYou were on the right path! And you added the hover after the initial "a". The problem is that the more specific tag, "nav a" is what is controlling the NAVigation links. Below is the answer. This will happen a lot when you are working with css, and finding the most specific css tags is an art.
a
{
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
p
{
color: #000;
}
h1
{
color: #ffffff;
}
h2
{
color: #ffffff;
}
nav a
{
color: #ffffff;
}
/*
This is the code that I added for task 4
*/
nav a:hover
{
color: #32673f;
}
Yoel Trujillo
3,703 Pointsyou are doing correctly except by you are not selecting anchor elements inside de nav.
do that and you will be fine :)