xxxxxxxxxx
/* 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*/;
}
xxxxxxxxxx
nav > ul > li:hover {
background-color: #dfdfe2;
color: #1b1b32;
cursor: pointer;
}