Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hello,
I am trying to do something with canvas on my site. This requires that all the elements on my page load when the page loads, but this template is assigning classes to all my elements that cause them only to appear on scroll, so they aren't included in the canvas. I manually commented out the animations in the CSS, but there is still a weird flash on page load and elements below the fold aren't being included in the canvas because they only appear on scroll still.
Can you please direct me to the code that I can edit to stop the template from assigning the animation classes in the first place?
Thanks,
Erin
Hi Erin,
Here you can add this Custom CSS to prevent all animations on scroll reveal:
.wow {visibility: visible !important;
animation: none !important;
}
This will stop WOW plugin to hide the elements in page.
Hopefully it will help you.