Changing cursor on rollover buttons?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Probably a stupid question, but How do I make the cursor change when people rollover a button so that they know it is a button?
13 years ago
Easy.

Edit your styles.css and add the following line:


input[type="button"]
{
    cursor:  pointer;
}


Fixes all of the rollovers buttons in one shot.  You'll have to edit the styles.css for the Administration page as well if you care about that.
13 years ago
Thank you for the explanation. I also had problems with the rollover of the mouse. I already used the same code but I mixed cursor and pointer up and now I know why it didn't worked in my website.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.