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 trialRomi Stepovich
8,473 PointsI'm not setting the color of the paragraph to black right.
Getting message that says to double check that I've styled h1 elements to be white with a hexidecimal value. Here is the code I put in:
Do I need an h1 code in as well? I'm not sure how this should look...And I have rewatched the video.
paragraph {
color: #000; }
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
#paragraph {
color: #000;
}
2 Answers
Jonathan Grieve
Treehouse Moderator 91,253 PointsHi there,
Try replacing your #paragraph style rule with
h1 {
color: #fff;
}
The hexadecimal for the brightest shade of a colour is F rather than 0 so 3 F's as a hexadecimal value will equate to white. :-)
Romi Stepovich
8,473 PointsThank you! It's working. :)
Jonathan Grieve
Treehouse Moderator 91,253 Pointsjust to add you didn't need the # before h1 that was my mistake.
H1 is just your bog standard element selector for selecting level 1 heading elements :-)