This seems incredibly easy, but I have spent half a day bashing my head against the wall trying to figure out why my fullcalendar events are showing only at 77px, when the w
you can set event width with eventAfterRender
$('#calendar').fullCalendar({ eventAfterRender: function(event, element, view) { $(element).css('width','50px'); } });