I am working with jQuery fullcalendar (version 2.7.1).
This is what I want to do:

Now I can set the background to red, but the text is not displayed. This is what I do:
var m = moment('2016-09-19'); $('#calendar').fullCalendar({ // put your options and callbacks here left: 'title', center: '', right: 'prev,next', weekends: false, weekNumbers: true, defaultView: 'month', defaultDate: m, events: [ { start: '2016-09-19', allDay : true, rendering: 'background', backgroundColor: '#F00', title: 'full', textColor: '#000' }, { start: '2016-09-20', allDay : true, rendering: 'background', backgroundColor: '#F00', title: 'full', textColor: '#000' } ] });
Here's what it looks like:

Therefore, the text is not added .... And the color is much lighter than the specified color.
As you can see, I also did not add βtodayβ to the right navigation, but he added in any case ...
I am also wondering how I can limit the navigation of the months. That they, for example, can choose only the month of September, October, November in 2016.
Can someone help me with these questions?