Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change event height in fullcalendar

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.

enter image description here

like image 277
aarontemp Avatar asked Mar 13 '23 01:03

aarontemp


1 Answers

Open your fullcalendar.css or (...min.css), search the class .fc-event and add this line to your class:

height:60px !important;
like image 134
Berti92 Avatar answered Mar 24 '23 02:03

Berti92