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 Styling Web Pages and Navigation Style the Portfolio

Dennis Richard Šulga
Dennis Richard Šulga
5,810 Points

The color of the text under images

The color doesn't change eventhough I have set it to #gallery li {color: #d400d4}.

1 Answer

Conrad Turuk
Conrad Turuk
5,144 Points

You need to be more specific with your css identifier. Currently you are trying to apply the color to the <li>; however the color rule applies to text only, and since you have no text within the <li> element, there is nothing to apply the color to.

Try this:

gallery li p {color: #000000;}

This will target the paragraph element within the link element. The text font should then change color. Let me know how it goes!

Cheers