1
  <body class="gamerboard1">
  </body>

.gamerboard1
{
cursor:url(../assets/curser.png), url(../assets/curser.cur),auto;   

}

Hi All,

I have to change the cursor image for all browsers.Cursor image changes well in Chrome and Firefox but fails to do in IE browsers. I have included the .cur file for IE but its not working for IE. Please Help . I have provided the DOCTYPE too

user3218194
  • 448
  • 4
  • 15

2 Answers2

0

try;

cursor: url('../assets/curser.png'), default;
flauntster
  • 2,008
  • 13
  • 20
0

Unfortunately, cursor is plain buggy in IE, at least until and including 10

In Internet Explorer for Windows up to and including version 10, if a relative URI value is specified in an external style sheet file the base URI is considered to be the URI of the document containing the element and not the URI of the style sheet in which the declaration appears.

http://reference.sitepoint.com/css/cursor

You may want be able to use a conditional comment to target IE and then feed it a modified style rule with a different url.

Hamed Ali Khan
  • 1,108
  • 3
  • 23
  • 29