Issue 670: Highlight weekends
Status:  Done
Owner: ----
Closed:  Nov 2010
Reported by dreadu....@gmail.com, Oct 13, 2010
Is there any way to change background color of cells with weekends?

Nov 10, 2010
Project Member #1 althaus.it
Check the generated HTML code with a tool like Firebug. You can simply set some CSS for the according classes:

.fc-view-month .fc-sat, .fc-view-month .fc-sun,
.fc-view-agendaWeek .fc-sat, .fc-view-agendaWeek .fc-sun {
  background-color: #F3F3F3;
}
Nov 21, 2010
Project Member #2 adamrs...@gmail.com
thanks althaus.it.

don't even think you need the .fc-view-month or .fc-view-agendaWeek prefixes.
if you need more precedence, you could just use a simple .fc
Status: Done
Nov 22, 2010
Project Member #3 althaus.it
I think I used the prefixes so that the days aren't colored in day view. ;)