1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

hyperlink color-Firefox works IE. dosen't

Discussion in 'CSS' started by Stumpygrrl, Oct 29, 2005.

  1. #1
    I need help from a pro, please and thank you!
    My links are supposed to be color #333333 (light black) and not underlined, when you put the mouse over the link the text color changes to pink and is underlined.
    In internet explorer, the active links are the wrong color and underlined. In mozilla firefox, they are fine. When you put the mouse over the link it works fine in both browsers here is the code:

    CSS:
    .menu_sub {
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    font-style: normal;
    color: #333333;
    position: absolute;
    left: 16px;
    text-decoration: none;
    }
    a:link {
    color: #333333;
    text-decoration: none;
    }
    .menu_sub a:hover{
    text-decoration: underline;
    color: #FF99FF;
    }

    .left_nav_title {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    color: #333333;
    text-decoration: none;
    position: absolute;
    letter-spacing: normal;

    }
    htm:
    <div class="left_nav" >
    <span class="left_nav_title"><a href="#">Home</a></span><br>
    <span class="left_nav_title">Vibrators</span><br>
    <span class="menu_sub"><a href="#">-Rabbit Vibrators</a></span><br>
    <span class="menu_sub"><a href="#">-Realistic Vibrators</a></span><br>

    Thank you very much in advance.
     
    Stumpygrrl, Oct 29, 2005 IP
  2. mattmdesign

    mattmdesign Well-Known Member

    Messages:
    1,201
    Likes Received:
    77
    Best Answers:
    0
    Trophy Points:
    118
    #2
    Maybe it is because you don't have .menu_sub infront of this:

    a:link {
    color: #333333;
    text-decoration: none;
    }
     
    mattmdesign, Oct 30, 2005 IP