CAWebPublishing / CAWeb

CA State Template WordPress, Divi Child Theme
https://caweb.cdt.ca.gov
13 stars 9 forks source link

[Bug]: Dropdown Hidden by Events Calendar #887

Open markaplet opened 5 months ago

markaplet commented 5 months ago

What happened?

z-index-calendar

When sites use the Events Calendar plugin, the main navigation dropdown menus will appear under the events calendar content. This is caused by inadequate specificity in the caweb-core theme. Specifically this line targeting header elements:

body[class*="6.0"] header { z-index: 15 !important; }

Because header is a generic html5 element, I recommend targeting .global-header specifically to avoid conflicts with other plugins in the future. That new style would be.

body[class*="6.0"] .global-header { z-index: 15 !important; }

CAWeb Version

1.10.6

Divi Version

4.23.4

Relevant log output

No response