Calendar menu today month week day

I need to display a full year calendar, the only way to do this appears to be to make a calendar for every month of the year laid out in a grid. So I want to remove the menu at the top so it just displays one month with no option to change it. If I click on calendar properties to remove the month, week and day this does not allow the calendar to display. However manually changing the properties to false corrects this. I cannot however remove the scroll arrows or today button. Any ideas?

I think you will have to apply some CSS to the buttons to hide them by adding the attributes to your custom css file

.fc-prev-button {
    display:none;
}
.fc-next-button {
    display:none;
}
.fc-today-button {
    display:none;
}

Brian

1 Like

Brian, you star many thanks!

Andre

1 Like