[Løst] How to disable the animation of the gallery module in Divi WP theme?

  

3
Emne starter

Hi, I have Divi WordPress tema and recently I've noticed that the gallery module has an animation - going from the left (slight one);

How can I remove it as there is no such option in the module itself (I've also checked the row and the section - nada!)

Tak for hjælpen

1 Svar
2

Hi, in your Divi child theme in the style.css inlcude this code:

.et_pb_gallery_item {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}

....or in the additional CSS section in Divi options.

Del: