javascript - Events in first week rendering close to the top in FulCalendar -
i'm seeing strange issue fullcalendar calendar created on our intranet. events on first week rendering close top of day, while subsequent weeks, event displays below day number.

i don't know how set css because containing division being positioned via tag attributes.
<div class="fc-event fc-event-hori fc-event-start fc-event-end veterans" style="position: absolute; left: 407px; width: 96px; top: 19px;"> <div class="fc-event-inner"> <span class="fc-event-time">12a</span> <span class="fc-event-title">companywide toiletry drive homeless veterans</span> </div> </div> i have tried setting css clear both
div.fc-day-content { clear:both; } but hasn't worked. i'm hesitant put margins on fc-event div because affect events, not top level ones. have idea how align events correctly?
i inadvertently fixed issue while looking @ question. when set class .fc-content-skeleton class in line 648 of fullcalendar.css (fullcalendar-2.1.1) have:
height:108px; that's height of calendar row in demo file default.html. div class 'fc-content-skeleton' should have same height div class 'fc-row'.
Comments
Post a Comment