-4

I want to change the image of my cursor,instead of it I want the hand image ,when I will take the cursor on the side bar menu than cursor image should be hand.

user2678110
  • 3
  • 1
  • 5

2 Answers2

0

IN CSS

#sidebar_menu { cursor: url('mycursor.cur'), pointer; }
Paul Rad
  • 4,820
  • 1
  • 22
  • 23
0

Just use Css

<div class="sidebar">
  bla bla
</div>

then in css file use :

.sidebar{
cursor:pointer;
}

or take this at all:

    <div style="cursor:pointer;">
      bla bla
    </div>

or if you want an image use this in css file :

.sidebar{
    cursor:url(/your_image_folder/your_hand_image.cur), pointer;
    }
BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356
Amin AmiriDarban
  • 2,031
  • 4
  • 24
  • 32