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

Why do my color shows differently from what it should be?

In this http://teamtreehouse.com/library/websites/build-a-simple-website/styling-content/fonts-and-colors stage, I added to my style.css following code: a { color: 4FB69F; text-decoration: none; }

but the color of these Hyperlinks end up showing in my browser(tested from firefox and chrome both) a different color from 4FB69F should present.. check in http://ipv6.zxq.net/bakin/

1 Answer

You have forgot to put the # sign before your hex code. It should be #4FB69F .. Give this a try, it should work.

a { color: #4FB69F; text-decoration: none; }

Thank you very much....