If the bottom section isn't fully visible on the published mobile version of your Webflow site, it’s usually due to layout or overflow issues related to spacing, fixed positioning, or viewport height settings.
1. Check Element Overflow Settings
- Select the body and container elements and check if overflow is set to Hidden in the Style panel.
- If a parent element has overflow: hidden, it may cut off child elements, especially when content pushes beyond the viewport height.
2. Review Section Height Settings
- Ensure that the bottom section isn’t set to a fixed height or 100vh (100% of viewport height) with additional content inside that overflows.
- On smaller mobile screens, such fixed heights may not accommodate all internal content (like padding, margins, or nested elements), causing overflow.
3. Inspect Margins and Padding
- Check for negative margins, especially on the bottom of the section or on adjacent elements.
- Excessive bottom padding or margin on the section or a surrounding element could be cut off on smaller screens.
4. Disable Fixed or sticky Positioning (if not needed)
- Avoid using position: fixed or sticky for key layout elements unless you're sure about how they behave on small screens.
- A fixed header or footer may unintentionally cover content if not sized or positioned correctly.
5. Check for Hidden Elements on Mobile
- In the Navigator, look for any elements set to “Display: none” on mobile views that might affect flow or positioning.
- An accidentally hidden spacer or container can impact how sections below are calculated.
6. Publish and Test on Real Devices
- The Webflow Designer preview may behave differently than the published version.
- Always publish the site and check on actual devices or use browser device emulation (e.g., Chrome DevTools) to simulate various screen sizes and inspect layout issues.
7. Add a Minimum Height to the Bottom Section
- Try setting min-height: 100vh or ensuring the section has enough content or padding to fill the screen.
- This ensures the section always attempts to occupy full screen height but won’t cut off overflow content.
Summary
The bottom section not appearing fully on mobile is typically caused by overflow issues, fixed heights, or hidden content. Review the section’s height, overflow settings, and spacing properties, and preview your site on real devices to ensure proper display.