Apr 22, 2005 #1 mikekomm Technical User Joined Apr 22, 2005 Messages 12 Location 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?
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?
Apr 25, 2005 1 #2 wiser3 Programmer Joined Jun 3, 2003 Messages 358 Location CA 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; } Upvote 0 Downvote
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; }