How to assign custom cursors to entire website

1.9k views Asked by At

I want to assign custom cursors to my entire website. I am using asp.net 4.0.

I have a master page and what I want is to assign a default custom cursor to the page and have all links use another custom cursor

Is this possible?

4

There are 4 answers

0
jonezy On BEST ANSWER

makes the body one cursor type

body {
  cursor: url(path/to/cursor.ico) pointer;
}

makes your anchors another type

a, a:active, a:hover, a:visited{
  cursor: url(path/to/different_cursor.ico) pointer;
}
0
The Muffin Man On

You can use CSS:

style="cursor: url(mycursor.cur), pointer;"

Note: Only .cur and .ani file types are supported as of IE6.

0
alex On
body {
  cursor: url(path/to/cursor.cur), pointer;
}

Further Reading.

0
Mike Geise On

If am understanding you correctly, You are looking to do something like this with css

body
{
    cursor: crosshair;
}