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
  • 72,637
  • 105
  • 156
  • 238
David Geismar
  • 2,758
  • 5
  • 34
  • 70
  • 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
  • 72,637
  • 105
  • 156
  • 238