While importing pre-made layouts or custom layouts, some elements might have different animation set.
To remove the animation, we can:
Definition: An element
is either a Section, a Row, a Column, or a Module
Remove the animation on a single-element
Open the settings for the element that you want to remove the animations
Go to Design Tab → Animation
Set the Animation to None
Remove the animation on all elements (sitewide)
Go to WordPress Dashboard → Divi → Theme Options → General Tab → Custom CSS
Add this CSS code:
.et_animated {
opacity: 1 !important;
animation-duration: 0s !important;
}
Notes:
The above CSS Code will remove any animation set using the Design Tab → Animation option group.
The above CSS Code will not remove the Slider/Fullwidth Slider animation used to animate the transition between each slide.