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 Pizzolato
2,797 Pointswhen adding the darker green to the border color and save it, I don't see a any changes to the colors.
Everything still looks as though it has the light green color around the header (no differentiation)
here is the code (note changed color to an even darker green to see if i can produce similar results but still nothing):
a { text-decoration: none; }
wrapper {
max-width: 940px; margin: 0 auto; padding: 0 5%; }
logo {
text-align: center; margin: 0; }
a { color: #6ab47b; }
header { background: #6ab47b; border-color: #0E420E; }
h1, h2 { color: #fff; }
nav { background: #0E420E: }
nav a, nav a:visisted { color: #fff; }
2 Answers
Melissa Hill
8,241 PointsHi There,
It looks like you have a colon instead of a semi-colon behind your hex color on your nav {background} line.
Was that in the original code?
Good luck!
Evan Pizzolato
2,797 Pointsthanks melissa! Looks like it was the semi-colon
Melissa Hill
8,241 PointsAwesome, so glad it worked!!!