Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #391927

    http://borstch.eu/karl-final2/galleri/

    I’ve disabled mouse over animations in the gallery with the code below. But when I change the container size the mouse over effect comes back. Any clues how to solve this?

    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
    -webkit-transform: scale(1,1) !important;
    -moz-transform: scale(1,1) !important;
    transform: scale(1,1) !important;
    }

    .av-large-gap.av-fixed-size .av-masonry-entry .av-inner-masonry {
    bottom: 15px !important;
    right: 0 !important;
    left: 15px !important;
    }

    #391988

    Hey crewneck!

    I could not reproduce the issue but can you try adding following code to Quick CSS as well

    .av-masonry-entry:hover .av-masonry-image-container {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    transform: none !important;
    }

    Best regards,
    Yigit

    #393802

    Solved it. Close thread.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Changing container width creates mouse over effect?’ is closed to new replies.