Hi There,
It looks like an element on the site is being rendered after the plugins script has run which is giving you the huge gap. Try updating to Version 1.5.5. That should hopefully solve that issue.
Unfortunately, there isn’t currently a way to disable the default animations for mobile. However, we are currently working on some developments for more mobile options.
If you need to resolve this issue immediately within the current patch I would suggest using Advanced animations to resolve your problem’s. By using advanced animations you could use media queries to target screens of a particular width.
@media(min-width:768px){
.fade-in{opacity:0;}
.fade-in.scroll-triggered{opacity:1}
}
Alternatively, you could disable all of the default animations on the site for mobile using CSS. Just copy this CSS snippet an insert it into your theme.
#example-block.scroll-triggered, .move-in-right, .move-in-left, .move-in-upwards, .move-in-up, .move-in-downwards, .move-in-down, .fade-in, .fade-in-upwards, .fade-in-up, .fade-in-left, .fade-in-right, .fade-in-downwards, .fade-in-down, .flip-left, .flip-right, .flip-upwards, .flip-up, .flip-downwards, .flip-down, .bounce-in-left, .bounce-in-right, .bounce-in-downwards, .bounce-in-down, .bounce-in-upwards, .bounce-in-up{ opacity:1 !important; transform:translate(0) !important;}