Tagged: lightbox transitions
hi
my client wants to disable the change of size transition in the lightbox slideshow.
I tried a few things but nothing worked. Can it be that the images just fade into each other without moving in and out when you click on them?
thanks
Nancy
tried this:
/* Disable Enfold Lightbox Animation/Transition */
.mfp-zoom-in.mfp-ready.mfp-bg.mfp-zoom-in.mfp-ready .mfp-preloader {
opacity: 0.8;
}
.mfp-zoom-in.mfp-ready .mfp-content.mfp-zoom-in.mfp-removing .mfp-content {
transform: scale(1);
opacity: 1;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
opacity: 0;
}
/* Force instant transition */
.mfp-zoom-in .mfp-content {
transition: none !important;
}
