I’m trying to implement a gallery with small thumbnails. Everything seems okay, but I noticed something weird when I preview the page. The thumbnails just stay greyed out until you scroll all the way down the page, then they load. It’s a bit weird, seems like a bug maybe? Here’s the page: http://deluxeawning.com/2015/?portfolio=retractable-awnings
Any help would be appreciated! Thanks,
Jadyn
Hey JadynWelch01!
Thank you for using Enfold.
Add this code to the Quick CSS field to disable gallery loading animation:
.avia_transform .avia-gallery-thumb img {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
}
Regards,
Ismael
That’s great, thank you!