Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

underlined links 1

Status
Not open for further replies.

mikekomm

Technical User
Apr 22, 2005
12
US
I have some text which acts as links and they are underlined. It is not in the code but in the CSS style. How do I remove these?
 
Do you want to remove the underlines from all links? or only some of them?

CSS rule to remove from all links
a {text-decoration: none; }

To remove from some, give them a class and apply the rule to the class.

< a href="link.html" class="nolink">link text< /a>

a.nolink {text-decoration: none; }
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top