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 trialEvan Patterson
11,229 PointsParagraphs are set to black, but I can't pass this section. Help?
Don't remember the paragraph change being in the videos, but I tried doing something anyway. It still isn't working.
a {
text-decoration: none;
color: #0066CC
}
body {
color: #999;
background-color: #000000;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
padding: 0 5%;
}
#logo {
text-align: center;
margin: 0 auto;
}
header {
background: #000000
border: #000000
}
h1, h2 {
color: #FFFFFF;
}
nav {
text-align: justify;
background: #000000
}
nav a, nav a: visited {
color: blue;
}
section {
text-align: center;
background: #000000
}
nav a.selected, nav a:hover {
color: #FFFF00
}
p {
display: #000000;
color: #000000;
background: #000000;
}
Caleb MacDonald
20,136 PointsI concur with Allison.
2 Answers
Caleb MacDonald
20,136 PointsHi Evan,
The issue may be related to the semi-colons that are missing on the end of lots of the lines. Try adding those, and see if they help.
CM
Evan Patterson
11,229 PointsThanks much! It's really easy to miss some of those semicolons
Allison Walker
17,137 PointsYou're missing semi-colons at the end of several of your style declarations. Make sure you end each line with a semi-colon.
Allison Walker
17,137 PointsAllison Walker
17,137 PointsYou're missing semi-colons at the end of several of your style declarations. Make sure you end each line with a semi-colon.