Reply To: Layout of event box height

Home Pro Support Forums CSS and Design Layout of event box height Reply To: Layout of event box height

#7495
room34
Keymaster

The default CSS for this view has a minimum height for the calendar table cells to achieve a more uniform look. To make it more compact, you can try using the compact parameter (although that currently doesn’t reduce the minimum height of the cells, but that’s coming in the next update).

You can also write your own CSS to modify the setting, like this:

.ics-calendar-month-grid td { height: 1px !important; }

That’s about as extreme as it gets, so you may want to try something with a bit of height. The default value in the plugin is 9em. (Also just a reminder that with table cells, the cells are always going to adjust enough to fit the content, so you use the height property, not min-height, which seems logical but actually has no effect on tables.)