"Smooth" scroll on mobile device

Hi @amoilatoque,

This is due to the problem where your content is not placed in the body, but using different divs that animate in to display your content.

To fix this it should be as simple as this javascript - Choppy scrolling in Safari - Stack Overflow

So you should paste this in Site Settings > Page Footer Code and click Save, and re-publish:

<style>
body > div {
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  -webkit-overflow-scrolling: touch;
}
</style>
2 Likes