georgiamartin Posted November 13, 2023 Share Posted November 13, 2023 I am trying to turn off the animations to my entire homepage on my site so it is all loaded at the same time. I have tried a few of the custom coding posted on here but it doesn't 100% work - this was the closest but it added a transparent dark block over all my elements: transform: unset !important; opacity: 1 !important; transition-delay: unset !important; transition: unset !important; Thank you for the help! Link to comment
Solution SaranyaDesigns Posted November 13, 2023 Solution Share Posted November 13, 2023 @georgiamartin I think the CSS transitions are set on the following classes, try applying your code to these selectors? .image-block-outer-wrapper.combination-animation-slide-up .image-inset, .image-block-outer-wrapper.combination-animation-slide-up .image-block-wrapper, .image-block-outer-wrapper.combination-animation-slide-up .sqs-image-content, .image-block-outer-wrapper.combination-animation-slide-up .image-caption-wrapper, .image-block-outer-wrapper.combination-animation-slide-up .sqs-dynamic-text-container { transition: none !important; will-change: unset !important; opacity: 1 !important; transform: none !important; } Link to comment
georgiamartin Posted November 13, 2023 Author Share Posted November 13, 2023 Perfect! Thank you so much 🙂 SaranyaDesigns 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment