Disabling Scroll Bounce

Hi guys,

Just wanted to start a discussion (I did have a look and I couldn’t find one on here already, though I might not have the correct terminology) about disabling scroll bounce.

I found a website with CSS links to this but is this safe for use on Webflow? And how would I go about using it?

Thanks!

http://stackoverflow.com/questions/8150191/disable-elastic-scrolling-in-safari

Open the page settings, and in the HEAD custom code zone, paste exactly this:

<style>
html,
body {
  height: 100%;
  width: 100%;
  overflow: auto;
}
</style>

Save and publish and test. You could do it almost only with Webflow, but Webflow only starts giving you control at Body, not at the HTML element.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.