How to make the event title in fullcalendar only one line even the title is long. By default, it is display full title, I wish to make it nice like Google Calendar.
Advertisement
Answer
Look in your css file for the following entry:
JavaScript
x
4
1
.fc-event-time, .fc-event-title {
2
padding: 0 1px;
3
}
4
and modify it like this
JavaScript
1
9
1
.fc-event-time, .fc-event-title {
2
padding: 0 1px;
3
white-space: nowrap;
4
}
5
6
.fc-title {
7
white-space: normal;
8
}
9