Dropdown menu goes under the header title

Like in the screenshot.
When i move the mouse over the lines in a dropdown menu, and try to choose the hidden ones, hole dropdown menu dissapears.
How do I make the dropdown menu to be over the header title?
Thank you.

Hello @tomaloo,

Please try to use this CSS solution, it should fix the issue:

.sub-menu{
position: relative;
z-index: 99;
}

This code should be placed in a child’s theme stylesheet.css, ideally.
But you can use a Custom CSS plugin or place it inside Dashboard > Appearances > Editor > Style.css but keep in mind that this will get erased if you update the theme.

Regards