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

HTML How to Make a Website Beginning HTML and CSS Write a CSS Selector and Property

h1 color change

I keep rechecking my work and I can't figure out what I did wrong on the color change to green in the challenge. Please help.

I'll try. Code?

Funny Jesse. Where do I get my cone of shame?

James Barnett
James Barnett
39,199 Points

Larry Phelps -

As Jesse Richard previously mentioned, it's hard for us to know what's causing the issue you are having if you don't show us your code. For some tips on how to do that, check out the tips for asking questions video located in the right hand sidebar.

2 Answers

Adam Duffield
Adam Duffield
30,494 Points

Hey Larry,

Try opening a discussion in a new tab and copy and paste your current code over and what you have to do to get a fast and accurate helpful answer. :)

Judging by the track your on this may help...

If its part 1/3 try just typing <style></style> tags above your <h1> keep your moves very simple and specific to what the code asks you to do.

If its part 2/3 then simple write h1{} inside your <style> tags.

If its part 3/3 then type color:green; inside your {}. The final result should look like this...

<style>h1 {color:green;} </style> <h1>Some text</h1>

Regards,

Adam

Adam Duffield
Adam Duffield
30,494 Points

I'll wrap these in quotation marks because it didnt show right :(...

Don't forget < style > tags including your < / style >closing tag, it keeps taking them out when i post on here

Thanks Adam