Mobile scrolling stuck – issue solved

Problem: Sometimes a page will function correctly on desktop but in mobile view the drag/scroll will get stuck when the page first loads, continually bouncing back upward. Sometimes with enough tries, it will eventually let you scroll down the page content.

I’ve seen this bug posted quite a bit without a consistent answer to the question. Facing a similar issue, I was able to solve via the following:

  1. Make sure BODY does not have any styles applied to it. Always the top suggestion; this helps avoid any overflow issues, max-height restrictions, etc.

  2. Look for all top-level page elements that have BODY as a parent. Make sure none contain a negative value for the bottom margin.

Number 2 above was affecting a current site build for quite some time until the bottom margin was removed from one of the page container divs. I hope this is helpful for anyone else experiencing a similar issue!

From my side it was a conflict between :
– The style of my footer code : <style> html, body { position:relative; overflow-x:hidden; </style>. (I’ve added that because the native webflow wasn’t working properly)
– The field of my footer form. (or maybe an interaction inside it)
Strange…