(I check this post already ) I try to alternate the week background color from fullcalendar, I try a lot of it, but it changes all my background or just change the event background only. I use chrome inspect tools and see they use the table, but each table doesn't have a class name.
//Here's the code I try:
table tr:nth-child(even) {
background: #CCC
}
table tr:nth-child(odd) {
background: #FFF
}
Up there code only change my event content background color, not the whole week row background.
Thank you all so much!