overflow: hidden, setting them to visible or auto. 100vh usage with 100% or use CSS variables to manage viewport height on Safari. max-width: 100% or overflow-wrap. body scroll disabled after use. padding-bottom: env(safe-area-inset-bottom); for iOS safe area issues.Mobile scrolling issues on a Webflow search results page are often caused by overflow settings, fixed/sticky elements, or unintended layout shifts. Here's how to identify and fix the problem.
overflow: hidden applied. This can block scrolling on mobile.visible or auto.
100vh incorrectly, often including or excluding the URL bar height.100vh with 100% height or use CSS custom properties (--vh) if using custom code to handle dynamic viewport changes.
overflow-wrap: break-word or limit widths using max-width: 100% on offending elements.
document.body.style.overflow = "hidden" and ensure it's being reset properly.
env(safe-area-inset-bottom).padding-bottom: env(safe-area-inset-bottom); via Embed or Custom Code.
To fix scrolling issues on your Webflow mobile search results page, inspect for overflow: hidden settings, problematic fixed/sticky elements, 100vh sizing bugs, and ensure scroll is not disabled via code. Adjust or remove those styles to restore proper scrolling behavior.