How can I fix the issue with my Webflow dropdown menu not expanding in Chrome, even though it works in Firefox and Edge?

TL;DR
  • Ensure parent containers have Overflow set to Visible to prevent clipping.  
  • Check z-index and position settings so the dropdown appears above other elements.  
  • Temporarily disable custom interactions to rule out browser-specific behavior conflicts.  
  • Verify dropdown behavior settings and inspect for conflicts inside the Designer.  
  • Use Chrome DevTools to detect hidden styles or CSS conflicts.  
  • Test both in Webflow Preview and on the live site to compare behaviors.  
  • Clear Chrome cache or use Incognito Mode to bypass cached styling issues.

Your dropdown menu not expanding in Chrome usually results from browser-specific conflicts, often caused by custom styles, interactions, or overflow settings.

1. Check for Hidden or Overflow Issues

  • Select the Navbar or parent container of the dropdown.
  • In the Style panel, verify that Overflow is not set to Hidden. This can prevent the dropdown from being visible when it tries to expand.
  • Set Overflow: Visible on containers/wrappers that surround the dropdown.

2. Validate Z-Index and Positioning

  • Make sure the Dropdown List has a higher z-index than surrounding elements, especially those that might overlap it.
  • Apply Position: Relative to the dropdown wrapper and z-index (e.g., 1000) to the dropdown list if needed.

3. Disable Custom Interactions for Testing

  • Go to the Interactions panel and check if any custom interactions are applied to the dropdown toggle or list.
  • Disable them temporarily to see if the dropdown expands in Chrome.
  • Some interactions behave differently across browsers — especially those managing height or display properties.

4. Double-Check Dropdown Settings

  • In the Element Settings panel, confirm that the dropdown is set to open on click or hover, as intended.
  • Toggle the dropdown open in the Designer and inspect if the Dropdown List is inside a conflicting element that may be causing clipping.

5. Inspect with Chrome DevTools

  • Use Chrome DevTools (F12) to inspect the dropdown.
  • Look for computed styles like display: noneopacity: 0, or incorrectly applied transform/translate values.
  • Confirm that no conflicting CSS is loaded in Chrome via browser extensions or custom embeds.

6. Test with Webflow’s Preview vs Live Site

  • Sometimes issues only appear after publishing. Preview your project in Webflow and then publish it.
  • Check both the Preview link and the live URL in Chrome to compare behavior.

7. Clear Cache or Try Incognito Mode

  • Chrome may be loading a cached version. Clear your browser cache or check in Incognito Mode to rule this out.

Summary

The dropdown menu not expanding in Chrome is usually caused by overflow restrictionsz-index stacking, or custom interactions. Adjusting these settings and inspecting the dropdown with Chrome DevTools will help identify and fix the issue.

Rate this answer

Other Webflow Questions