Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Romi 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 90,705 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 90,705 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 :-)