• Hello there,

    i would like to remove the hover animation/transition in the grid style list. Where can i find this behaviour to disable it? Or is there an option for it that i couldnt find?

    another unrelated question: How can i change the image aspect of the thumbnail. it seems to be very zoomed in.

    Tyvm in advance

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Md. Abdullah Al Mahim

    (@aamahin)

    Please copy the below CSS code and Put + Save in Event Setting -> Custom CSS. This will remove the hover animation.

    .mep_bg_thumb:hover {
        transform: none;
        -webkit-transition: none;
        transition: none;
    }
    Thread Starter blumencoolde

    (@blumencoolde)

    Ty for the quick response. For me it somehow did not work without an !important tag. It now works as follows:

    .mep_bg_thumb:hover {
    transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘remove grid hover transition & image aspect’ is closed to new replies.