settingsAccountsettings
By using our mini forum, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy
Menusettings

Q: How to disable the animation of the gallery module in Divi WP theme?

+3 votes

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

asked in Web Development category by user icabe

1 Answer

+3 votes
 
Best answer

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.

answered by user andrew
selected by user icabe
...