Good morning team,
I’m trying to disable the animation above the fold on the homepage and followed the instructions in the article below for disabling animation on a specific color section. Unfortunately, it doesn’t seem to be working. https://iceworksus.com
I’m likely missing something—could you please take a look and let me know what I need to change?
Thanks in advance for your help!
Hey James,
Thank you for the inquiry.
We added this code to disable the default fade in animation of the elements inside the Color Section.
.js_active .av-minimum-height .container {
opacity: 1;
transition: none;
}
If you need to apply this to a specific color section, apply the name “av-section-no-animation” in the Advanced > Developer Settings > Custom CSS Class field, then replace the css with:
.js_active .av-section-no-animation .container {
opacity: 1;
transition: none;
}
Best regards,
Ismael
Thank you. That did the trick. You can close the ticket.
I appreciate your help.