Dropdown disappears behind main content

I have a nested nav menu with a dropdown. but the dropdown items disappear behind the main content and i have no idea why. i have tried change z-index but no change.
https://v3.amplus.ch/ (check menu item webdesign)

many thanks
Jonas

its working if i add

body * {
overflow: visible !important;
}

Im not sure which element is set to overflow hidden because I did not set it at all…

Hi Jonas,
You set .header to overflow hidden and therefore it is expected that the dropdown won’t overflow it’s parent.

1 Like

ah thank you so much!