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 Iconography

i have notice on nick's contact page his text for phone, e-mail and twitter is green and mine is blue.

i have look at the text color and I could not figure out how mine is blue. knowing blue is a default color.

2 Answers

Arwa Kuterwadliwala
Arwa Kuterwadliwala
3,214 Points

Hello,

If I have interpreted your question correctly, he actually did change the hyperlink text color to green. You can do so by using following CSS

.contact-info a{ color: green; }

You can specify your nested path to anchor element and choose the color you would prefer instead of green. Hope this helps you.

This is the best way of going about changing the text color.

thanks I will follow the code back.