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 trialTeferi Heye
3,448 PointsHi 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.
Nejc Vukovic
Full Stack JavaScript Techdegree Graduate 51,574 PointsTry 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.
Emma Willmann
Treehouse Project ReviewerEmma Willmann
Treehouse Project ReviewerDid you link main.css to your html file? if not, add the following link in the head section of your html file.
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.