Calendar component - highlight today column

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

Page1_Untitled-19_Editor_Retool-GoogleChrome2025-05-2211-30-09-ezgif.com-video-to-gif-converter

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

@jameshogg

You're very welcome :raised_hands: — and glad to helped.