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;
}
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
Solved it. Close thread.