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.
Asked
Active
Viewed 357 times
-4
-
use css style="cursor:pointer" – Vinod Louis Sep 28 '13 at 09:01
-
would have been faster if you googled this. – Jo E. Sep 28 '13 at 09:06
-
How can you be so lazy?! – Lightness Races in Orbit Sep 28 '13 at 09:35
2 Answers
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
- 665,005
- 155
- 1,345
- 1,328
Amin AmiriDarban
- 1,917
- 4
- 21
- 30