[Solved] How to disable the animation of the gallery module in Divi WP theme?

  

3
Topic starter

Hi, I have Divi WordPress theme 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!)

Thanks

1 Answer
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.

Share: