Web Analytics Made Easy -
StatCounter different HOVER colors? - CodingForum

Announcement

Collapse
No announcement yet.

different HOVER colors?

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

  • different HOVER colors?

    How can I make two different color hover links? For example I'm trying to make one link turn yellow when the user rolls over this link, and on the same page make other link turn red.
    This does not work, what am I doing wrong?

    <html>
    <head>
    <title>Help Me please!!</title>
    <style type="text/css">

    .style1 {
    a:hover {color:yellow}
    }

    .style2 {
    a:hover {color:red}
    }

    </style>
    </head>

    <body>
    <p><a class="style1" href="page1.htm">page one</a></p>
    <p><a class="style2" href="page2.htm">page two</a></p>
    </body>
    </html>

  • #2
    Code:
    .class1:link {
      color: blue;
      }
    
    .class2:link {
      color: red;
      }
    // freak

    Comment


    • #3
      WOW! That was simple! THANKS A LOT!!! You are the greatest!

      Comment

      Working...
      X