Howdy Saane,
I would love to assist here.
Basically your menu system, which possibly comes from your theme, is using some CSS to make sure it always appears on top. It is very effective, and so it appears over top the datepicker.
There would be two options to fix this:
- Correct the CSS within your theme to not always appear on top. Specifically .menu-panel-wrapper should not specify it’s position and .menu-panel should be a z-index of 9 or less. You might need to contact the theme author if you are unfamiliar with modifying CSS.
- Or you can add some padding for the datepicker with the following CSS. This will add more padding between the calendar and the menu, so that the datepicker can popup and still be visible.
div#tribe-events-content-wrapper { margin-top: 135px; }
Does that all make sense? Will one of those work for you?
Cheers!
– Brook