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 trialcathal britton
16,664 PointsRemove the text decoration from the link.
I was just wondering if anyone can help me, I am doing the task where the question is, "Remove the text decoration from the link."
I entered the following:
a{
text-decoration:none;
}
I keep getting the error message Can anyone please help?
4 Answers
Jennifer Rai
Courses Plus Student 13,164 PointsHi Cathal,
It looks like you have an extra curly brace closing the paragraph style.
p{ text-indent:50px; line-height:1.5;} }
James Barnett
39,199 PointsYour code works for me.
My guess you have any issue with one of the previous step, post all of your code.
cathal britton
16,664 PointsHi James thanks for the reply, here is the full code I entered
h1{ text-transform:capitalize; }
p{ text-indent:50px; line-height:1.5;} }
a{ text-decoration:none; }
cathal britton
16,664 PointsDoh!, silly me, thanks Jennifer that solved the issue.
Jennifer Rai
Courses Plus Student 13,164 PointsNo problem. I have at least 10 "Doh!" moments a day :-)