Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
325 views
in Plugins by
How can I get the mouse to change to a hand when hovering over like/dislike buttons?

I'm using the Candy theme.

Thanks!
Q2A version: 1.5.4

1 Answer

+1 vote
by

This is actually CSS question and not anythign specifically related to Q2A.. Anyway you can get hand ( pointer ) using this

cursor: pointer on your class hover state so it will be something like below....

.your class:hover{

cursor:pointer;

}

...