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 trialAnthony Restivo
808 PointsIt says to check my hexidecimal value. Is black not #000?
I'm not sure exactly what I'm missing here.
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1 , h2 {
color: #fff;
}
p {
background-color: #000;
}
3 Answers
Jeremiah Bushau
24,061 PointsHey, try changing the color, rather than the background-color ;)
Feisty Mullah
25,849 PointsHi Anthony, OK, Everything is fine just remove the background and leave the color only exactly as in h1, h2. a { text-decoration: none; }
wrapper {
max-width: 940px; margin: 0 auto; }
logo {
text-align: center; margin: 0; }
h1, h2 { color: #fff; }
p { color: #000; }
Feisty Mullah
25,849 Pointsyou do not need to type color.
p { background: #000; }
Anthony Restivo
808 PointsThe question wasn't clear and it needed to be color, not background-color which is the same thing as background. Thanks!