• I just spotted a problem with the full calendar. I’m using v 2.7.5

    Here’s my calendar, http://280group.com/product-management-training/calendar/

    Note when there’s a week without any events, the dates for Tue-Fri have dropped. Instead of appearing in the top right corner they’re at the middle right.

    Looking at the HTML, I found Mon is being formatted differently from the other days of the week.

    This is Monday

    <div style="min-height: 101px;">
    <div class="fc-day-number">5</div>
    <div class="fc-day-content">
    </div>

    This is the other days with the date being dropped to the middle right. Note that the style is missing from this <div>

    <div>
    <div class="fc-day-number">6</div>
    <div class="fc-day-content">
    </div>

    https://wordpress.org/plugins/event-organiser/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Stephen Harris

    (@stephenharris)

    That’s odd, I’ve not come across this before. Is the problem specific to that theme, or does it affect other themes (e.g. TwentyTwelve/TwentyFourteen?)

    Thread Starter Jim Reekes

    (@reekes)

    Switching to the TwentyFourteen theme, I find visually it’s not a problem.

    Yet looking at the HTML, the problem I described above is still there.

    So the missing style after the div is the bug.

    It just seems to only be visible depending on the theme.

    Plugin Author Stephen Harris

    (@stephenharris)

    That only Monday has <div style="min-height: 101px;"> is intended behaviour. The divs of other days normally sit at the top of the cell rather than in the middle, so their height does not matter.

    There’s probably something in the theme that’s telling those div to sit in the middle rather than at the top.

    Thread Starter Jim Reekes

    (@reekes)

    Hmm, I look at my CSS to see if the calendar is picking up my standard table.

    I have cells set to align in the middle by default. Sounds like the calendar is picking up my default table layout.

    Thanks for the tip. Let me see if I can create a calendar specific table style.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Bug in full calendar display’ is closed to new replies.