1

In my website, I am using a color picker jquery plugin for picking colors from an image.I have change the cursor to an eyedropper icon using CSS. Right now,while clicking on the image,the color pointed by the upper part of cursor is picked.Since it is eyedrope cursor, i need to use its lower part to pick colors. Please help me out.

This is the cursoram that using : enter image description here

Thanks

AloSwift
  • 407
  • 6
  • 24

1 Answers1

3
cursor:url(http://www.yourwebsite.com/yourcursorname.cur) 0 16,default;

Tell it where to set the x y coords in your css when declaring the cursor.

Gary Hayes
  • 1,728
  • 1
  • 15
  • 23
  • Yes. Note however, that if this is necessary, there is an error in the .cur file! The information is supposed to be in there. These coordinates are meant to be used only with ordinary image files like .png, .gif etc (although they do override the coordinates from the .cur file if present). – Mr Lister Oct 23 '13 at 07:24