Hi there.
As I use the Module «Horizontale Gallery» Settings «Bild vergrössern» which is cool. But I need the pictures shorten to original size, when scrolling out of the Gallery. The clicked pictures stay in bigger view I need them to shrink to original size after leaving the Section or clicking again on the picture.
https://www.directupload.net/file/d/6098/5zy4642p_png.htm
Any ideas? Suggestion: Double-Click on big picture shrinks to original Gallery size. Possible?
Hey Stephan,
Thank you for the inquiry.
Are you referring to the lightbox preview? Please provide the site URL in the private field so that we could check the gallery. By default, the image shown in the lightbox preview is the “large” thumbnail and it can be adjusted it in the Settings > Media panel.
Best regards,
Ismael
The main problem is the lightbox preview stays in bigger size mode. I prefer that it shrinks to original thumbnail size when Mouse-Out.
Possible?
Hi,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
.av-horizontal-gallery-enlarge-effect .av-horizontal-gallery-wrap:hover {
z-index: 2;
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
}
.av-horizontal-gallery-enlarge-effect .av-horizontal-gallery-wrap.av-active-gal-item {
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
Best regards,
Yigit
Going to check this out…