In terms of this specific site – there are two issues
1) First is alignment both in the month view and day view – this is due to the way the theme formats the calendar. The simplest fix is to add the following css code to your site. You can put this in your theme options if it supports custom css or into the styles.css file within your theme directory. You may have to adjust the 28px value up or down to get it exactly right.
2) The second issue is that with 30 min events – there is very little room to display the text. I have added a font-size css element that makes it more readable – but it tough to get text to work inside such a small time slot.
#calp-daily-timesheet-events {
left: 28px;
}
#calp-weekly-timesheet-events {
left: 28px;
}
.calp-event {
font-size: 5px !important;
}
Thanks, Don