I am using http://fullcalendar.io/.
the calendar selects by default the current day of the week. How do you stop this ?
Asked
Active
Viewed 623 times
0

Samuel Liew
- 76,741
- 107
- 159
- 260

David Geismar
- 3,152
- 6
- 41
- 80
-
You read the documentation, and figure out how to set the [**default date**](http://fullcalendar.io/docs/current_date/defaultDate/) – adeneo Oct 07 '15 at 06:58
-
http://stackoverflow.com/questions/4769707/current-day-color – adeneo Oct 07 '15 at 07:12
1 Answers
2
You could remove the background color using CSS:
.fc-today {
background: none !important;
}

Samuel Liew
- 76,741
- 107
- 159
- 260