Slide Animation

Discussion in 'StartPoint Business One Page WordPress Theme' started by amaconline, Jul 6, 2014.

  1. amaconline

    amaconline Member

    Joined:
    Feb 17, 2013
    Messages:
    217
    Likes Received:
    6
    Hello,

    Is there a way to remove or turn off the slide-animation on mobile view. This will enhance user experience as currently slides appears only when you scroll down on smartphone devices. If mobile users who are viewing the website are unaware of the content then that can lead some of the content go unnoticed. I hope you can help me to resolve this.

    Thank you.
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For this
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media screen and (max-width: 782px)
    {
    .animated.left-to-right,
    .animated.right-to-left,
    .animated.bottom-to-top {
    -webkit-transition-duration: none;
    -moz-transition-duration: none;
    -o-transition-duration:none;
    -ms-transition-duration:none;
    transition-duration: none;
    }
    .animation_started.animated {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    opacity:1;
    }
    .left-to-right {
    -webkit-transform:none;
    opacity:1;
    }
    .right-to-left {
    -webkit-transform: none;
    opacity:1;
    }
    .bottom-to-top {
    -webkit-transform: none;
    opacity:1;
    }}
    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page