Last active
November 13, 2025 19:16
-
-
Save askwpgirl/4f48f4fe253ad978d6695b5a1037ba5b to your computer and use it in GitHub Desktop.
CSS for Elementor to Respect Reduced Motion
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
| /* This is a CSS media query for accessibility-aware | |
| ** browsers respects reduced motion setting in operating systems */ | |
| @media (prefers-reduced-motion: reduce) { | |
| .elementor-element.animated { | |
| transform: none !important; | |
| animation: none !important; | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Older Elementor versions may have a different selector. Comment here if the above doesn't work for you.