If the tooltip bubble exceeds the height of the widget, anything above the widget is cut off.
Also, if you scroll to the next month and mouse over the dates on the right hand side of the calendar, the tooltip bubble floats to the right side and is as a result almost completely cut off.
Any help? Is this an issue with my theme or with the widget itself?
This is an issue with CSS your theme is applying. On line 1217 of your layout.css file you have:
.widget {
clear: both;
position: relative;
overflow: hidden;
padding: 30px 0 30px 0;
float: none;
}
The ‘overflow: hidden;’ property is what is causing the issue. Either remove that or override it and that will fix the issue.