I’d also like to apply a wrap to my event titles so they don’t trail off after an ellipsis. I found this code in a different answer, but it doesn’t seem to work:
[!cite]
/* Show full event title */
.fc-event-main {
overflow-wrap: break-word !important;
white-space: normal !important;
}
.fc-daygrid-event {
white-space: normal !important;
}
/* If text is still truncated with dots, remove the ellipsis */
.fc-daygrid-event .fc-event-title,
.fc-daygrid-event .fc-event-title-container {
white-space: normal !important;
overflow: visible !important;
text-overflow: clip !important;
}