Playing with the cursor's z-index

Leeuw123

New Member
Hey people,

I have been up all night trying to figure out how to get my cursor to go behind a div. This is merely for aesthetic reasons, but I want it to appear like the logo is the most forward element as the cursor passes over it.

My question is: Does the default cursor have a natural z-index that is changeable in css (e.g. cursor: hand;)? If not, does anyone have a javascript solution that would either elevate a div above the cursor or recess the cursor below the div?

Sorry if my question is not super eloquent, I'm new to code-writing.

Thanks
 

Josh d

New Member
Not sure if this completely answers your question but you can do

cursor: none;

for the style for the div the logo is in
 
Top