Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1396582

    MattHoll
    Participant

    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.

    #1396583

    MattHoll
    Participant
    This reply has been marked as private.
    #1396655

    Rupok
    Member

    Hi 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!

    #1396664

    MattHoll
    Participant

    Thanks.

    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.

    #1396697

    MattHoll
    Participant

    I tried this, but no luck.

    .rev_slider_9_1 {
    cursor: grab;
    }

    #1396781

    MattHoll
    Participant

    Got it!

    .rev_slider {
    cursor: grab;
    }

    #1396831

    MattHoll
    Participant

    Arrggghh!

    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.

    #1396857

    MattHoll
    Participant

    This 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.

    #1397189

    Rupok
    Member

    Hi there,

    You are using the correct code as it needs browser prefix.

    Cheers!