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 trialElisa Wehner
4,033 PointsI've entered the code and I'm getting an error saying I haven't changed the h1 element to white
I've entered the code a few different ways: h1 { color: fff; } and h1, h2 { color: fff; } Either way I get an error.
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1 {
color: fff;
}
h2 {
color: fff;
}
3 Answers
Julian Gutierrez
19,201 PointsYou're missing the "#" on your colors.
h1 {
color: #fff;
}
h2 {
color: #fff;
}
Ron Horn
7,591 PointsJulian is correct, any time you use color it must always start with #.
Ted Sumner
Courses Plus Student 17,967 PointsA hexidecimal color has to start with a #. You can also use a defined name of a color like blue or rgb() or rgba(). Those later types do not use a #.