[ad_1]
Hello,
you have already searched in the right direction.
The css instruction:
.wp-block-cover, .wp-block-cover-image {
align-items: center;
background-position: 50%;
box-sizing: border-box;
display: flex;
justify-content: center;
min-height: 430px;
overflow: hidden;
overflow: clip;
padding: 1em;
position: relative;
}clips the overflow from the header, that is why the dropdown is not shown, you can overwrite this by adding this custom css:
.wp-block-cover, .wp-block-cover-image {
overflow: visible !important;
}
Hi @albinandersson,
You are on the right track for searching for z-index and overflow.
You can use this CSS to resolve the issue:
.wp-block-cover {
overflow: visible !important;
}
Hi!
Thanks for the help Benni and Robert! Now it’s working.
