If your navigation menu links aren’t working on tablet or mobile devices in Webflow, the issue is usually due to interactions, visibility settings, or z-index problems in mobile breakpoints.
1. Check the Mobile Menu’s Clickable Elements
- Open your project in Webflow Designer.
- Switch to Tablet or smaller breakpoints using the top bar.
- Open the mobile navigation menu by clicking the hamburger icon in preview mode.
- Click the links inside the menu to see if they are clickable or blocked.
2. Inspect Menu Open and Close Interactions
- Go to Interactions Panel, check for interactions tied to the mobile menu (Trigger: Navbar menu open/close or Hamburger menu click).
- Confirm that the interaction does not disable pointer events or hide links unexpectedly.
- Look for steps that might change Opacity, Display, or Z-index of the menu or its parent container.
3. Review Z-Index and Positioning Layers
- Select the nav menu, the dropdown container, and other surrounding elements.
- Make sure the nav menu has a higher z-index than other overlapping sections (e.g., hero section, header image).
- Ensure no other elements are absolutely or fixed-positioned above the menu on mobile.
4. Check Display and Opacity Settings in Breakpoints
- Sometimes styles in desktop don’t properly cascade into mobile views.
- On mobile and tablet breakpoints, check that the navigation links container is set to display: block or flex, not hidden.
- Confirm opacity is 100% and pointer-events are enabled on menu items.
5. Disable Body Scroll Overflow Settings
- If the menu opens in a full-screen overlay, developers often set overflow: hidden on the body.
- If not reset properly on menu close, it may cause unclickable areas.
- Check your interactions or custom code to ensure body overflow is only restricted when necessary.
6. Check for Custom Code Conflicts
- If you’ve added custom JavaScript or jQuery tied to the menu, disable it temporarily to see if it resolves the issue.
- Make sure no code is preventing default behavior of links or intercepting clicks improperly.
Summary
To fix non-working navigation links on mobile and tablet, check for interaction conflicts, z-index or overflow issues, and broken visibility settings. Use Webflow’s Designer in each breakpoint to verify that menu items are visible, properly positioned, and not obstructed by other elements.