Reputation: 121
I want to increase the space between two events in month view of full calendar.
Upvotes: 3
Views: 4454
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