Skip to content Skip to sidebar Skip to footer

Changing Pointer, After Already Changing Default Cursor

I'm creating a stylized page, and have already changed the default cursor, but it goes back to the standard 'pointer' when you mouse over a link. I want to change the standard poin

Solution 1:

Try this:

a:hover, a:active, a:visited {
    cursor: url(../img/cursor.png), auto;
}

Demo

P.S: Used a random image in the demo.

Post a Comment for "Changing Pointer, After Already Changing Default Cursor"