0

I am using http://fullcalendar.io/. the calendar selects by default the current day of the week. How do you stop this ? enter image description here

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 Answers1

2

You could remove the background color using CSS:

.fc-today {
    background: none !important;
}
Samuel Liew
  • 76,741
  • 107
  • 159
  • 260