Make WordPress Core

Opened 15 months ago

Last modified 15 months ago

#59124 new defect (bug)

Dropdown navigation not displaying past the header

Reported by: manellyc's profile ManellyC Owned by:
Milestone: Awaiting Review Priority: normal
Severity: major Version: 6.3
Component: Editor Keywords:
Focuses: Cc:

Description

This is happening on multiple sites. This is an example: https://www.mightyepiphyte.com/
Since the recent WordPress update the drop-down menu is no longer showing below the header.

Change History (1)

#1 @sabernhardt
15 months ago

  • Component changed from General to Editor

The header on your site has a Cover block, which clips or hides its overflow.

For a quick fix on that site, you could go to the Editor, open the Styles menu (half-light, half-dark circle icon), open that panel's 3-dot "More" menu, select "Additional CSS" and paste the following styles:

.wp-block-cover {
  overflow: visible;
}
.wp-block-navigation-submenu {
  background-color: #8cc63f;
}

(the submenu would need a background color)

Note: See TracTickets for help on using tickets.