Why is the calendar list only showing two events on my published site (mobile)?

My Calendar is only showing 2 of my events when viewed on mobile and does not scroll to show more. All events are visible on Desktop.

2 Likes

Hi there, @Accounts_Get_Lit :waving_hand:

The issue occurred because of the container height restriction on your website. We’ve fixed it using this code in the Custom CSS field on the Style tab of your widget’s settings:

@media screen and (max-width: 991px) {
  .global-styles, .group-wrapper {
        height: auto;
  }
}

.global-styles, .section-calendar {
  height: auto;
}

We’ve also noticed that you’ve added the installation code of your widget twice. The code under the header isn’t used, so we’d recommend removing it:


Please check it out and let me know if everything is fine :wink:

1 Like