Had a customer who wanted the title and description on the slider overlay to be delayed before it comes in. We struggled finding the appropriate setting in the module setting, but since it was site wide we decided to do this with CSS.
- Go to “Customize” in the DIVI menu
- Go down to “Additional CSS” and add the following.
.et-pb-active-slide .et_pb_slide_description {
-webkit-animation-delay: .2s;
-moz-animation-delay: 2s;
-o-animation-delay: 2s;
-ms-animation-delay: .2s;
animation-delay: 2s;
}
Let us know if this helped you..