Change height of days in calendar with CSS

Hi guys,

Im trying to change the height of days in the calendar with css, but so far i've been unable to make it work. I can locate the setting if i inspect the page in chrome, but i havent been able to make the custom css work.

I've tried with, among others, this:

#view_185>div.knack-calendar.fc>div>div>table>tbody>tr.fc-week0.fc-first
{min-height: 80px !important;}

 

Hi Martin, not sure what you mean by height of the days, but I used this to increase the height of each time slot row so you can view more event details:

.kn-content .fc-agenda-slots td div {
height: 40px !important;
}

1 Like