Hey @Jayson,
Both issues are caused by CSS rules in your theme. For the top-being-cut-off issue, your theme has a blanket rule for all tables that sets their overflow property to hidden! 🙁
You can overwrite that by adding the following CSS to the bottom of your theme’s style.css file:
body table.tribe-events-calendar {
overflow: visible !important;
}
—
When it comes to the overflowing of the images, try adding this CSS to the bottom of your theme’s style.css file:
.tribe-events-tooltip .tribe-events-event-thumb img {
max-width: 100% !important;
width: 100% !important;
}
Cheers!
George