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 trial

General Discussion

whats wrong with my code? they want me to set my paragraphs to black using a hexadecimal colour

a { text-decoration: none; }

wrapper {

max-width: 940px; margin: 0 auto; }

logo {

text-align: center; margin: 0; } h1, h2 { color: #fff; } { color: #000; }

3 Answers

logo {
    text-align: center; margin: 0;
 } 

h1, h2 { 
    color: #fff; 
} 

{
 color: #000;
 }

I have reorganized it for ou. Do you see any inconsistencies with your code?

Guy Noda-Bailey
Guy Noda-Bailey
18,837 Points

Socratic method of teaching, nice.

p { color: #000; } that should give all the paragraphs on the page a color of black. you missed the p before { color: #000; }

Garrett Reasoner
Garrett Reasoner
913 Points

Hey Emily, I added 3 backticks before and after the code you copied and pasted then cleaned up the white spacing to make it easier to understand.

a { text-decoration: none; }

wrapper { max-width: 940px; margin: 0 auto; }

logo { text-align: center; margin: 0; }

h1, h2 { color: #fff; }

{ color: #000; }

The issue seems to be the last item, '{color:#000;}'.

Try adding the letter 'p' in front of the curly bracket to indicate paragraph.

So you should have

a { text-decoration: none; }

wrapper { max-width: 940px; margin: 0 auto; }

logo { text-align: center; margin: 0; }

h1, h2 { color: #fff; }

p { color: #000; }