I want to hide cells of previous and next month dates, which are coming in current month view. I tried adding css but not working for me:
<style>
.hiddenEvent{display: none;}
.fc-other-month .fc-day-number { display:none;}
td.fc-other-month .fc-day-number {
visibility: hidden;
}
</style>
I want to hide cells, so that user cannot create events by clicking on next month's days.
Thank you.