Sundar racer
Sundar racer

Reputation: 121

How to increase the space between the two events in fullcalendar

I want to increase the space between two events in month view of full calendar.

Upvotes: 3

Views: 4454

Answers (1)

Anil Mahajan
Anil Mahajan

Reputation: 214

you need to modify css element of event in EventRender Function

you can achieve spacing between events like this

eventRender: function (event, element, view) {

            $(element).css("margin-top", "5px");


              $(element).css("margin-bottom", "5px");

 }

Upvotes: 6

Related Questions