Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #293465

    How can I remove the fade animation of icons loading?
    I have a feeling it is an all or nothing thing. I have a page with a large table and icons and it looks silly to have the fade animation for the icons in the table as the table content appears and then slowly the icons appear.

    Is there a way to remove that animation at the post/page level with some JS in the post/page or is it an all or nothing thing to disable in the functions.php?
    Or maybe I could set the animation to instant with a 0 delay…where is that set?
    I guess this affects the galleries as well…right? I rather have all loaded and no fading animation than slowly loading 200 thumbnails at 10 per second

    #293512

    Hi Monsoon!

    Thank you for using the theme.

    Please add this on Quick CSS or custom.css:

    .avia_transform .av_font_icon, .avia_transform .avia_start_delayed_animation.av_font_icon {
    opacity: 1 !important;
    -moz-transform: scale(1 !important);
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    -webkit-animation: none;
    -moz-animation: none;
    -msanimation: none;
    animation: none;
    }
    

    Regards,
    Ismael

    #293646

    Thanks :)
    And also thanks for working on the weekend

    #293661

    Hi!

    Sure. Glad it worked. If you still have questions, let us know. :)

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Enfold – Remove the fade animation of icons loading’ is closed to new replies.