To maintain scrolling on your Webflow page while setting the overflow for the body, you need to ensure that specific styling properties are correctly applied.
1. Adjust Body Overflow Settings
- Select the Body element: Access the styles panel to modify properties.
- Set overflow property: Choose overflow: visible or overflow: auto to ensure scrolling is not hindered.
2. Check Other Elements for Overflow
- Container settings: Inspect all containers and sections to ensure they do not have overflow: hidden unless specifically desired.
- Ensure content is within boundaries: Verify that all content fits within its parent elements without being cut off.
3. Verify Fixed or Sticky Positioning
- Positioning styles on elements: Review any elements with fixed or sticky positioning, as they can affect overflow behavior on the body.
- Avoid conflicts: Ensure these styled elements do not interfere with the main scroll of the page.
4. Review Custom Code
- Check for CSS or JS that modifies overflow or scrolling: Ensure there are no custom scripts or styles conflicting with default Webflow behavior.
Summary
To maintain scrolling while setting overflow on the body in Webflow, ensure the body's overflow is set to visible or auto and check other elements for restrictive overflow properties. Review elements with fixed or sticky positioning and any custom code that may affect scrolling.