Web Analytics Made Easy -
StatCounter link underline - CodingForum

Announcement

Collapse
No announcement yet.

link underline

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • link underline

    i'm trying to get rid of the link underline.

    i know its a simple
    <stlye> tag, but a couple of thins:

    how do you remove the underline from a group of links, again? Also, does this work in NS?

    Can you remove the underline on a link by link basis?

  • #2
    for the whole document:

    <style>
    a:link {text-decoration: none;}
    a:visited {text-decoration: none;}
    </style>

    if you want to do it for a group of links, you should create link "classes"

    <stlye>
    a.ClassName:link {text-decoration: none;}
    a.ClassName:visited {text-decoration: none;}
    </style>

    <a href="page.html" class="ClassName">click</a>

    hope that helps.

    ~Quack

    Comment

    Working...
    X