Howdy Deven,
I would love to help you with this.
Something on your website, probably your theme, is adding the .offcanvas-active theme to your <body> element when you click on the datepicker. This is causing the following CSS to take effect:
body.offcanvas-active:before {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1001;
opacity: 1;
background-color: rgba(0,0,0,0.7);
}
The easiest way to hide this would be with some more CSS. You could add custom CSS to your website to hide that overlay on Events pages:
body.post-type-archive-tribe_events.offcanvas-active:before {
display:none;
}
Does that all make sense? Did that do the trick?
Cheers!
– Brook