How can I disable visited links being different than non-visited?

Sharky Forums


Results 1 to 4 of 4

Thread: How can I disable visited links being different than non-visited?

  1. #1
    Tiger Shark Ark86's Avatar
    Join Date
    Aug 2001
    Location
    Ohio
    Posts
    924

    Question How can I disable visited links being different than non-visited?

    This may sound like a stupid question but I can' figure out how to make visited links look just like non-visited links. Here is my CSS code:

    A:link{color: "#990000"; text-decoration: none;}
    A:hover{color: "#ff0000"; text-decoration: none;}
    A:visited{color: "#990000"; text-decoration: none;}

    I can get them to appear the same color, but not when I hover over them. Will I have to write a javascript to change them or is there a way I can disable visited links turning different colors? Thanks.
    My Webpage: http://www.andyknotts.com (Give me feedback)

    My specs:
    ----------------
    AMD Athlon XP 2500+ OC'd to 2100MHz
    Abit NF7 @ 205 MHz FSB
    1.5Gigs PC3200 RAM @410Mhz
    Turtle Beach Santa Cruz
    Altec Lansing 641's
    128meg NVidia 6600GT AGP
    7200rpm 120G w/ WinXP pro
    5400rpm 40G w/ Gentoo Linux
    NEC DVD/RW
    Lite-on 40x12x48 CDRW
    19" Hyundai L90D+ LCD (amazing )

  2. #2
    Sleeps with the Fishes
    Join Date
    Jan 2001
    Location
    Pittsburgh (please click here to donate $5 to city budget)
    Posts
    1,246
    Just try eliminating A:visited altogether, I think it should just make all links the same.

  3. #3
    Super Bunny Mod muisejt's Avatar
    Join Date
    Dec 2000
    Location
    Nova Scotia, Canada
    Posts
    9,833
    Try it this way, it's a bit picky with the order:

    A:link{color: "#990000"; text-decoration: none;}
    A:visited{color: "#990000"; text-decoration: none;}
    A:hover{color: "#ff0000"; text-decoration: none;}
    If your sig is longer than your post then type more.

  4. #4
    Tiger Shark Ark86's Avatar
    Join Date
    Aug 2001
    Location
    Ohio
    Posts
    924
    Try it this way, it's a bit picky with the order:
    OK, that worked. I didn't have a clue that the order mattered. Thanks.
    My Webpage: http://www.andyknotts.com (Give me feedback)

    My specs:
    ----------------
    AMD Athlon XP 2500+ OC'd to 2100MHz
    Abit NF7 @ 205 MHz FSB
    1.5Gigs PC3200 RAM @410Mhz
    Turtle Beach Santa Cruz
    Altec Lansing 641's
    128meg NVidia 6600GT AGP
    7200rpm 120G w/ WinXP pro
    5400rpm 40G w/ Gentoo Linux
    NEC DVD/RW
    Lite-on 40x12x48 CDRW
    19" Hyundai L90D+ LCD (amazing )

Posting Permissions

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