I’d like to remove the portfolio animation – I’d like the images to just be static on the page.
I added this code:
.avia_desktop.avia_transform3d .av-masonry-entry {
-webkit-perspective: none;
-moz-perspective: none;
perspective: none;
}
That code made the animation change from coming in on the left to moving up from the bottom – and I’d like to just be static on the page.
Hey Andrea!
Try:
.avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
animation: none !important;
-moz-animation: none !important;
-webkit-animation: none !important;
}
Cheers!
Josue
This gets rid of the animation, which is great, but the thumbnails still don’t load until you scroll over that section. It would be great to have them preloaded.
Hi!
Modify your previous code:
.avia_desktop.avia_transform3d .av-masonry-entry {
-webkit-perspective: none;
-moz-perspective: none;
perspective: none;
opacity: 1 !important;
}
Best regards,
Josue
Hmmm – they load differently, but they still don’t start loading until you scroll over that portion of the site.
Try with this instead:
.avia_desktop.avia_transform3d .av-masonry-entry {
-webkit-perspective: none;
-moz-perspective: none;
perspective: none;
opacity: 1 !important;
visibility: visible !important;
}
Regards,
Josue
Yea!!!! Works GREAT! Thank you soooo much!
You are welcome, always glad to help :)
Regards,
Josue