My goal: Highlight the entire column a light grey for Today column
Issue: When on Calendar the Today column has bolded heading, but sometimes eyes move to wrong column.
Is there way to shade the entire column for Today?
Hey @jameshogg
You can use the custom CSS for it
.fc-day-today { background-color: #e6e6e6 !important; border-left: 2px solid #999 !important; border-right: 2px solid #999 !important; }
It will work perfectly
You're a champion. Thanks for the prompt response.
Would never have found that by myself.
Right click Inspect was jumping to rows in the table inside the div class="fc-timegrid-slots". I now can see the table holding the columns is within div class="fc-timegrid-cols".
Very cool how devs have added a bunch of labelling classes to all the grid elements.
1 Like
You're very welcome — and glad to helped.