OK – I’m using he built in gallery function in he enfold advanced editor (page builder)
when having multiple images in a 2-column gallery function, on page load they sometimes they like zoom up and becomes 100% thumbnail size – but sometimes they don’t go up to 100% – it seems like the function is stuck somehow.
Try pressing a little on menu items here http://bit.ly/1zdFT56 (also use the WPML language flags to change languages) – all pages under “Natur og Steder” has the gallery functionality, so “press away” :-)
site is work-in-progress so it’s not finished look yet…
What’s happening – any suggestions on solving this issue ?
Hey!
Try adding this code to the Quick CSS:
.avia_transform .avia-gallery-thumb img{
-webkit-animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */
-moz-animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Fx 5+ */
animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* IE 10+ */
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
}
Cheers!
Josue