Tagged: x
-
AuthorPosts
-
March 6, 2017 at 12:19 pm #1396582
Hello.
I didn’t see anything in the settings that would do this and found nothing on the forum.
Is it possible to chance the mouse cursor on hover over a Revolution Slider?
I would like to make a grabby hand so people using a desktop computer know that they can also swipe the image to navigate.
I will put the URL and log in in the reply.
Thanks for any help.
March 6, 2017 at 12:20 pm #1396583This reply has been marked as private.March 6, 2017 at 1:02 pm #1396655Hi there,
I can’t see any slider on your site so can’t give you tailored answer. But it should be like :
.your-element { cursor: grab; }
Cheers!
March 6, 2017 at 1:13 pm #1396664Thanks.
It’s on the home page as in the attached.
How do I find the element’s name in order to use that code? When I try inspect element I only see the class of the element and no ID. Can’t find an ID like I could with those menus.
Any help is appreciated.
March 6, 2017 at 1:45 pm #1396697I tried this, but no luck.
.rev_slider_9_1 {
cursor: grab;
}March 6, 2017 at 3:04 pm #1396781Got it!
.rev_slider {
cursor: grab;
}March 6, 2017 at 3:46 pm #1396831Arrggghh!
Actually, this did not work. It worked only in Firefox. In Chrome and Safari, it still shows the default cursor even after clearing the cache and reloading the page.
Help?
Thanks.
March 6, 2017 at 4:07 pm #1396857This seems to be working.
.rev_slider {
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}Please let me know if that seems correct. Testing and it seems okay.
Thanks.
March 6, 2017 at 10:36 pm #1397189Hi there,
You are using the correct code as it needs browser prefix.
Cheers!
-
AuthorPosts