• Resolved bcgsam

    (@bcgsam)


    Hi there! Fantastic work on this plugin! It’s really helping our new site. I had one small question:

    Is it possible to remove the animation hover effect on the listings? When you hover over a listing, the text slides in from the left. We would like to simply remove this animation as it clashes with the rest of our site. I don’t see any settings for this and have tried a few ideas with custom CSS but no luck so far. Our team would really appreciate any direction with this.

    Thanks again! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bcgsam

    (@bcgsam)

    I found a workaround with CSS! For anyone trying to do the same thing, this worked for me.

    I added this under the settings and custom CSS section:

    li:hover {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    }

    h2 {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    }

    h3 {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    }

    Might be a little overkill, but it got the job done. Feel free to experiment for whatever your own needs are.

    Plugin Author QuantumCloud

    (@quantumcloud)

    Looks good ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Hover Animation’ is closed to new replies.