I have a custom cursor that uses an image. My source code:
cursor:url(../images/drag_mini_bg.png);
Then I discovered that Firefox requires you to define a default backup if the image is not found, and change it to:
cursor:url(../images/drag_mini_bg.png), default;
This worked for Firefox and Chrome, but not for IE. I read that IE uses a different source for the path than other browsers, and implemented this solution :
cursor:url(../images/drag_mini_bg.png),url(/images/drag_mini_bg.png),default;
(The second url refers to the html file, not the css file in which this code is included.)
This did not help, so I found out about this error and changed the image to a .cur file:
cursor:url(../images/drag_mini_bg.cur),url(/images/drag_mini_bg.cur),default;
However, it still does not appear in IE. Anything else I can try?
source share