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

where is the paragraph in this?

i'm lost

css/main.css
a {
  text-decoration: none;
}

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

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

h1, h2 {
  color: #fff;
}

body {
  color: #999; 
}

6 Answers

Ethan Lowry
PLUS
Ethan Lowry
Courses Plus Student 7,323 Points

The 'paragraphs' aren't there yet - the challenge is asking you to add the style to this existing CSS which will set the color of any paragraphs on the page.

start like this

p {

}

Ok i'm still lost. I dont know how to figure it out.

it is just saying target the paragraph in a html document which is

p {

}

then inside the curly braces type the attributes it is asking you to type. for instance

p { color: green; }

double check that you've styled paragraph (p) elements to be black with a hexidecimal value. this is what i keep getting. after i try everything.

Devin Scheu
Devin Scheu
66,191 Points

The question is asking you to format the P element with a black hexidemical format like this:

p {
   color: #000;
}

If you think my answer was good, feel free to mark it as best answer below, if you need more help in the future from me, you can contact me at devinwscheu@gmail.com.