Adjusting Calendar Size in Desktop

I was inspecting inside the html class containing desktop-view not-mobile-device, to reduce the calendar size on desktop, and have found where the CSS might need to be changed to achieve this task.

the class fc-month view appears to be the calendar widget we’re interested in, and i was able to resize it locally and relatively, using CSS, through the fc-view-container class. However, i was only able to scale the width, not the height or overall size.

Has anyone else encountered this issue, when trying to modify locally?

3 Likes

You should be able to change the height using the .calendar.fc element.

2 Likes

Ah, but unfortunately you’ve pictured the per topic calendar, and not the category one

Same element is shown on the category view. You may need a bit more CSS though:

#main-outlet .calendar.fc.fc-unthemed {
  height: 200px;
  overflow-y: scroll;
}
1 Like