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

    On our site we have animations on images (full rotation) and on icon lists.

    Is there a way to disable these on mobile devices only?

    #1362887

    Hey,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    @media only screen and (max-width: 767px) {
    .avia-animate-admin-preview.av-rotateIn, .avia_transform .avia_start_delayed_animation.av-rotateIn,
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .iconlist_icon,
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .avia_start_animation .iconlist_icon { 
        animation: none !important;
     }
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .iconlist_icon,
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .avia_start_animation .iconlist_icon {
      opacity: 1;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
    }
    

    Cheers!
    Yigit

    #1362893

    This does not work :-(

    #1362896

    Hi,

    Could you please try following as well

    
    
    @media only screen and (max-width: 767px) {
    .avia-animate-admin-preview.av-rotateIn, .avia_transform .avia_start_delayed_animation.av-rotateIn,
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .iconlist_icon,
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .avia_start_animation .iconlist_icon { 
        animation: none !important;
       -webkit-animation: none !important;
     }
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .iconlist_icon,
    .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .avia_start_animation .iconlist_icon {
      opacity: 1;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
    }
    

    If that does not work either, could you create temporary admin logins and post them here privately so we can look into it? :)

    Regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.