Code:
<style type="text/css">
body {cursor: url(mycursor.cur), auto;}
a {cursor: url(myothercursor.cur), pointer;}
</style>
But if you want each link to have a different cursor, you can use class names:
Code:
<style type="text/css">
body {cursor: url(mycursor.cur), auto;}
a.cur1 {cursor: url(myothercursor.cur), pointer;}
a.cur2 {cursor: url(myyetanothercursor.cur), pointer;}
</style>
Then for one link have:
Code:
<a class="cur1" href="whatever.htm">Whatever</a>
and for the other:
Code:
<a class="cur2" href="someother.htm">Someother</a>
You can do this as many times as you like for as many different cursors/links as you want to have. And if by chance with this setup you want two or more links to have the same cursor, just give them the same class.
Bookmarks