Last active
December 9, 2022 07:40
-
-
Save pro-beaver/191e197b949e3419b4db803193ac8733 to your computer and use it in GitHub Desktop.
Disable and Hide Animations in Beaver Builder modules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Disable and Hide Animations in Beaver Builder modules | |
* | |
* @author Davinder Singh Kainth | |
* @link http://probeaver.com/?p=1697 | |
* | |
*/ | |
/* Hides animation section in Beaver Builder Modules */ | |
div#fl-builder-settings-section-animation { | |
display: none !important; | |
} | |
/* Disables existing Beaver modules animations applied to page layouts */ | |
.fl-animated { | |
-webkit-animation-name: none !important; | |
animation-name: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this still work?