Display more Text in fullcalendar

后端 未结 9 880
一整个雨季
一整个雨季 2020-12-12 09:45

I am looking for a solution to display more information in event.

For example in the DayView you see a event from 06:00 to 10:00.
I want to display a additio

9条回答
  •  青春惊慌失措
    2020-12-12 10:04

    Well i found a simpler solution for me:

    I changed fullcalendar.css

    and added the following:

    float: left;
    clear: none;
    margin-right: 10px;
    

    Resulting in:

    .fc-event-time,
    .fc-event-title {
        padding: 0 1px;
        float: left;
        clear: none;
        margin-right: 10px;
    }
    

    now it only wraps when it needs to.

提交回复
热议问题