Web Analytics Made Easy -
StatCounter mouse over - CodingForum

Announcement

Collapse
No announcement yet.

mouse over

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

  • mouse over

    i am looking for a script to do a mouse over to change the color of the background and text color in the same cells


    Thxs Steve

  • #2
    Stevan

    You could do this quite simply using CSS and the 'a' tag.

    #button a {color: white; background-color: red;}
    #button a:hover {color: red; background-color: yellow;}


    Then you call them up using the div tag:

    <div id="button"><a href="#">blah</a></div>

    This should work ok

    meerkat
    Ya don't need a weatherman to know
    which way the wind blows...

    Comment


    • #3
      Are you looking to change the background and text colour when you mouse over a link? Or when you mouse over the cell.

      The code meerkat gave you will only change something when the user rolls their mouse over a link inside the <div>

      ~Quack

      Comment


      • #4
        Whenever you're looking for scripts, you should post to forums about scripting problems. Here, we handle and discuss about problems related to mark-up, document structures and style definitions.

        In this particular case you were successful: hovering is done with CSS just like stevan advised.
        Note, that NN4 don't support pseudo-classes, thus hovering isn't working.
        Zvona
        First Aid for
        Web Design

        Comment


        • #5
          Originally posted by QuackHead
          The code meerkat gave you will only change something when the user rolls their mouse over a link inside the <div>
          Though if everyone finally realized how horrible IE is, we can all go like:

          div:hover {
          background: bla;
          }

          Because Gecko, Opera, and I'm pretty sure Konqueror all support the :hover pseudo-class on elements other than <a>.
          jasonkarldavis.com

          Comment

          Working...
          X