m0dE
m0dE

Reputation: 313

Full Calendar CSS - displaying events outside the calendar canvas

If you take a look at fullCalendar website, we are presented with a calendar.

If I attempt to drag the calendar's event, the events are always hidden behind the canvas' edges hidden behind the canvas' edges

Is there any way I can modify the CSS, so the events are popped up outside of the canvas? popped up outside of the canvas?

The calendar can be found here: http://arshaw.com/fullcalendar/

Thanks in advance!

Upvotes: 0

Views: 2224

Answers (1)

richardaday
richardaday

Reputation: 2874

Add this to your CSS file:

div.fc-view.fc-view-month.fc-grid {
  overflow: visible;
}

Upvotes: 1

Related Questions