Skip to content

Instantly share code, notes, and snippets.

@pro-beaver
Last active December 9, 2022 07:40
Show Gist options
  • Save pro-beaver/191e197b949e3419b4db803193ac8733 to your computer and use it in GitHub Desktop.
Save pro-beaver/191e197b949e3419b4db803193ac8733 to your computer and use it in GitHub Desktop.
Disable and Hide Animations in Beaver Builder modules
/**
* 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;
}
@tyhallcsu
Copy link

Does this still work?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment