Your mobile dropdown menu not scrolling fully is likely caused by improper handling of overflow or incorrect parent container settings.
div
inside the dropdown).auto
or %
if it needs to scale.overflow: auto
or overflow-y: auto
to allow vertical scrolling when content exceeds the available space.navbar
or nav-menu
) do not have overflow: hidden
that restricts scrollability.max-height
in vh
units (e.g., 90vh) instead of a fixed pixel height. This allows the menu to be scrollable if it exceeds the viewport height.Ensure that -webkit-overflow-scrolling: touch
is applied (Webflow may not expose this directly, but it helps on iOS).
You can add an Embed element with a small custom style to target your dropdown menu wrapper and apply:
selector { -webkit-overflow-scrolling: touch; }
Replace selector
with your dropdown class.
z-index
than surrounding elements.absolute
or fixed
depending on context so that it stacks correctly above other content.Use max-height: 90vh
with overflow-y: auto
on your dropdown container. Avoid overflow: hidden
on parent elements and ensure your dropdown is properly positioned. This will allow mobile users to scroll the menu fully, as seen on Webflow's site.