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
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.
ah thank you so much!