+ 3
Own Images
So I want to know if you could also use your own images as cursor
3 Answers
+ 31
If you want to change the cursor on html page:
body {
cursor: url("http://path.to.image");
}
+ 12
body {
cursor:url("Your_own_image_url");
}
+ 2
Thanks ;)