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 trialJosiah Martin
237 PointsText underlined when not needed
When ever i do text for like the title it underlines it did i do something wrong or forget a step?
1 Answer
James Anwyl
Full Stack JavaScript Techdegree Graduate 49,960 PointsCan you post your code?
If your heading is a link it will be underlined by default, you can remove this underline with the following css code
a {
text-decoration: none;
}
Also ensure your headings aren't using text-decoration: underline; You could do a search on your code and see if this property is declared anywhere.
Hope this helps!
Hayden Taylor
5,076 PointsHayden Taylor
5,076 Pointspost your code please