Reputation: 171
I want to change the event height in Fullcalendar. These events are from my google calendar. I want the events in fullcanlendar to appear with no space in between. I dont know if it is a css or js issue.
Upvotes: 4
Views: 23135
Reputation: 1577
You can also try to work with the agendaEventMinHeight option: https://fullcalendar.io/docs/agendaEventMinHeight
Upvotes: 0
Reputation: 9
Set eventRender
callbacks and change the CSS style like this:
eventRender: function(event, element) {
element.css("font-size", "1.2em");
element.css("padding", "5px");
}
Upvotes: 0
Reputation: 471
Open your fullcalendar.css or (...min.css), search the class .fc-event
and add this line to your class:
height:60px !important;
Upvotes: 8