Hi There
Buttons or links aren’t clickable after my menu closes?
Anyone know how to help?
https://pickpiko.webflow.io/
Preview link
Thanks alot!
Dorus
Hi There
Buttons or links aren’t clickable after my menu closes?
Anyone know how to help?
https://pickpiko.webflow.io/
Preview link
Thanks alot!
Dorus
Hey @Dorus_van_Keulen1, you are experiencing this behaviour, because you have set up your menu within the Webflow navbar component. Clicking the Menu Button opens an invisible dropdown in the background, which I assume never closes, as you’re closing your custom menu with an interaction.
To solve this, remove the native navbar component and place everything within a regular div. Let me know if this works for you.
Hi @Dorus_van_Keulen1
Try this once
Only possible with custom code.
<script>
$('.w-nav-menu').on('click', 'a', function() {
$('.w-nav-button').triggerHandler('tap');
});
</script>
Thanks alot Julian, this helped!