Add the following code to your Custom CSS within your WordPress admin area: Divi >> Options.
.object { animation: MoveUpDown 5s linear infinite; position: relative; left: 0; bottom: 0; } @keyframes MoveUpDown { 0%, 100% { bottom: 0px; } 50% { bottom: 20px; } }
Add the class name object to your desired module’s CSS Class under the advanced tab, within the module’s settings. In this example we used an image module.
Mission Complete.
Note: This hack can also be applied to a row and/or section.
Feel free to experiment with different figures within your CSS code.
Enjoy!😀
0 Comments