Disable all elements animations

To disable all elements animations in the site add this code snippet into Theme options > Layout > Advanced > Custom css:

.animate-in,
.group-animate-in,
.animating {
    visibility: visible !important;
    opacity: 1 !important;
    animation-name: none !important;
    transform: none !important;
}

If you want to disable the animations on Mobile only:

@media (max-width: 692px) {
  .animate-in,
  .group-animate-in,
  .animating {
    visibility: visible !important;
    opacity: 1 !important;
    animation-name: none !important;
    transform: none !important;
  }
}

 

pixfort
pixfort
Essentials support team
hub.pixfort.com

Hey, this is pixfort support team, if you still need help you can always reach us via the chat messenger in your account on pixfort hub

Related Posts