Results 1 to 3 of 3

Thread: HELP +REP

  1. #1
    Join Date
    Oct 2006
    Location
    BUXTON
    Posts
    2,191
    Tokens
    0

    Latest Awards:

    Default HELP +REP

    Hello,

    Well when im doing my site everytime i add a link it underlines the link:S:S

    Now, I press the underline button and it goes... but when i upload it to the net its there:S:S i cant get rid. any help??

  2. #2
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    Well its probabaly due to the link state declorations, aka its underlined to show its a link, when u press it or its visited it changes again to reflect that, possibly removeing the underlining? Hence when u upload it, since its a new place the links going to that you may not have visited, its again underlined.

    To get rid of em, try adding this css
    Code:
    <style type="text/css">
    A:link {text-decoration: none}
    A:visited {text-decoration: none}
    A:active {text-decoration: none}
    A:hover {text-decoration: none}
    </style>
    If you already have css, just add the "text-decoration: none" to the link styles. ... if im remembering this all correctly

  3. #3
    Join Date
    Oct 2006
    Location
    BUXTON
    Posts
    2,191
    Tokens
    0

    Latest Awards:

    Default

    Thx!!! +REP!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •