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

Gabriel Almanza
PLUS
Gabriel Almanza
Courses Plus Student 8,078 Points

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

Chandler Tayek
Chandler Tayek
5,513 Points

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....

Chandler Tayek
Chandler Tayek
5,513 Points

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

p{
    color: #000000;
}
Chandler Tayek
Chandler Tayek
5,513 Points

What does the question say exactly?

Gabriel Almanza
Gabriel Almanza
Courses Plus Student 8,078 Points

Set the color of paragraphs to black using a hexadecimal value

Chandler Tayek
Chandler Tayek
5,513 Points

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

Gabriel Almanza
PLUS
Gabriel Almanza
Courses Plus Student 8,078 Points

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"

Chandler Tayek
Chandler Tayek
5,513 Points

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