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 How to Make a Website Customizing Colors and Fonts Use Color in CSS

Teferi Heye
Teferi Heye
3,448 Points

Hi pettit,

After I created the main.css and I try to remove the underlined from the link .Using
a { text-decoration: none; } no effect on the website then.

Emma Willmann
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Emma Willmann
Treehouse Project Reviewer

Did you link main.css to your html file? if not, add the following link in the head section of your html file.

<head>
    <meta charset="utf-8">
    <title>Nick Pettit| Designer</title>
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="css/main.css">    
</head>

If you've done that, have saved both files, and refreshed the browser and it is still not working, can you post a copy of your html and css? That will help us to figure out whats going on. If you have posted code in the forum, then you should look at the Markdown Cheatsheet under the comment/answer box.

Try selecting the class with pseudo: .Using:link {text-decoration: none}

Is this class nested inside a "ID"? If so try: #IDname.Using a {text-decoration:none}

Post your code and it's easier to answer.

Regards,

N.V.