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

CSS How to Make a Website Customizing Colors and Fonts Write Hexadecimal Colors

Set the color of paragraphs to black using a hexadecimal value.

Stage 5 Customizing Colors and Fonts

Challenge task 2 of 4 i have tried with p { color: #000000; } Bummer! Double check that you've styled paragraph (p) elements to be black with a hexidecimal value.

8 Answers

Here is the whole solution I had

a {
  text-decoration: none;
}

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

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

h1,h2{
    color: #FFFFFF;
}

p{
    color: #000000;
}

Cool....

thank you your solution worked.

I just took the challenge and passed with this. Try refreshing your page.

p{
    color: #000000;
}

i have already tried that but i can not pass this challenge

What does the question say exactly?

Set the color of paragraphs to black using a hexadecimal value

my first answer was: p { color: #000000; } but its wrong

thanks i already pass the challenge

What was the issue? and how did you fix it just curoius

i just dont know. i try several times with p { color: #000000; } Challenge task 2 of 4 i have tried with p { color: #000000; } Bummer! Double check that you've styled paragraph (p) elements to be black with a hexidecimal value. untill the challenge say to me "nice work take next challenge"

so you didn't try anything different like taking out a spaces or anything?

yes i put space between the : after de color color: #000000;