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 Adding Pages to a Website Add a New Page

2 Answers

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

Hi Sara,

It looks like the text colour in your paragraph element is the same as your background.

So the colour is being somehow overriden by a parent element.

You can go into your CSS and try and find which element that is (by parent element) I mean the element that is the container element for your h2 and paragraph element.

If you're feeling very confident you can inspect the elements using Chrome DevTools (CTRL + J) to try and see what's happening.

Or for a quick fix, try and add a black color to your heading and paragraph elements by using the color CSS property.

color: black;

Good luck!

Sara Parker
Sara Parker
2,238 Points

Thank you, Jonathan. I worked!