no cursor de mudança de pairar
li {
cursor: pointer;
}
GrepperFoo69
li {
cursor: pointer;
}
/* I am using buttion id test. You can use whatever you want*/
/* If you want default cursors, use */
#test:hover{
cursor: pointer /* etc*/;
}
/* If you want custom cursors, use */
#test:hover{
cursor: url(default.png) /* the default is your photo*/;
}
// No Need for jQuery, the cursor will always show pointer over this element
#myElement
{
cursor: pointer;
}