Hello,
I use the photografie theme of enfold (header on left sidebar):
is there a way to disable the image “zooming” and “highlight” effect on portfolio mansory view?
I’m talking about the effect that zooms in the picture when you hover over a picture.
Preview:
http://kriesi.at/themes/enfold-photography/portfolio/
Hi royaltask!
Try adding this to your custom CSS.
.av-masonry-item-with-image, .av-masonry-item-with-image * {
transform: none !important;
}
Cheers!
Elliott
Great theme, thank you for your time.
It stops transforming the content box sizes when resizing the browser now, too. I just need not zooming while hoving.
Hi!
Please use following code instead
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
-webkit-transform: scale(1,1);
-moz-transform: scale(1,1);
transform: scale(1,1);
}
Best regards,
Yigit
Thank you, this works now in all cases. Such a great support here. Thanks for the help!