As shown in the attached image, our calendar in week view showed all-day events as really long. Our Events Calendar settings use ‘Full Styles’ option under Display tab > Basic Template Settings.
After sifting through the CSS, I found two styles had height set to 100%. Setting the height to auto seemed to fix it. I put the code below in the ‘Custom CSS’ section of our theme:
.tribe-events-grid .type-tribe_events h3.entry-title {
height: auto;
}
.tribe-events-grid .type-tribe_events a {
height: auto;
}
We use the ‘Extra’ theme made by Elegant Themes in case someone needs to know, but based on the class assignment I don’t think this is a theme issue.