« Helping each other Forum

How would I add a cursor to my profile that is "adaptive"

basically, if you shoot over to my profile, ive already got a custom cursor, but whenever you hover over links it kinda,,,, ruins the immersion. anyone know how i can add another cursor that activates when you hover over links or smth?

this is the code im using now, if anyone needs it 

<style>

body {cursor: url('FILE GUARDEN LINK'), auto; }

</style>


Report Topic

1 Reply

Reply by La Mea

posted

Hey there! Idk if you solved this problem by now but there's a way to have the hovering link cursors.

The put this neat little code into where your cursor code is, replace the links with your wanted cursor, and everything should work! If not, lemme know!:

a:hover {    
 cursor: url('https://cur.cursors-4u.net/games/gam-12/gam1112.cur'), auto;
}
* {
 cursor: url('https://cur.cursors-4u.net/games/gam-12/gam1113.cur'), auto;
}


Permalink Report Reply