• Resolved n0v0

    (@n0v0)


    I would like to disable animation on mouse hover over the team grid, possible?

    Thanks !

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support akramkhanrasheed

    (@akramkhanrasheed)

    Currently, there’s no built-in setting to disable the animation on mouse hover over the team grid. However, you can override it with custom CSS.

    We’ve noted your request and will include an option to disable the animation in the next update.

    Let us know if you need the CSS snippet to disable it for now!

    Best regards

    Thread Starter n0v0

    (@n0v0)

    Thank you for the quick reply 🙂

    In the meanwhile the CSS snippet would be very appreciated !

    Plugin Support akramkhanrasheed

    (@akramkhanrasheed)

    Please use the below CSS:

    .wps-widget--team .wps-widget--item .wpspeedo-team--single:before {
    display: none;
    }
    .wps-widget--team .wps-widget--item .wpspeedo-team--single .team-member--thumbnail {
    box-shadow: none;
    transform: none;
    }
    .wps-widget--team .wps-widget--item .wpspeedo-team--single:hover .team-member--thumbnail {
    box-shadow: none;
    }
    .wps-widget--team .wps-widget--item .wpspeedo-team--single:hover {
    --wps-divider-width: 50px;
    }
    .wps-widget--team.wps-team-theme--circle-01 .wps-widget--item .wpspeedo-team--single:hover {
    --wps-divider-width: 60px;
    }
    .wps-widget--team.wps-team-theme--square-05 .wps-widget--item .wpspeedo-team--single:hover {
    --wps-divider-width: 60px;
    }
    .wps-widget--team.wps-team--thumb-zoom-in .team-member--thumbnail img {
    transform: scale(1);
    }
    .wps-widget--team.wps-team--thumb-zoom-out .team-member--thumbnail img {
    transform: scale(1);
    }
    .wps-widget--team.wps-team--thumb-zoom-in .wps-widget--item .wpspeedo-team--single:hover .team-member--thumbnail img {
    transform: scale(1);
    }

    If you like our plugin and support, please give us a rating. Let me know if you need anything else.

    Best Regards!

    Thread Starter n0v0

    (@n0v0)

    Great thank you! You deserve the top rating ! 😀

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Disable animation on hover’ is closed to new replies.