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:
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.
What happened?
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