Calendar Month view - make today highlighted
In the monthly calendar view, make today highlighted like a changing the color of today that stands out on the calendar rather than just bolding today's date.
-
Rob L commented
We achieved this for our event calendar by inserting the following snippet into the CSS customization:
====================================
/* Event Calendar Item - CURRENT DAY */
td.EventListCalendarItemSelected {
background-color: rgba(255, 255, 100, 0.80);
}
====================================If you want to see how it looks on our website, just go to https://www.jsts.us/Ride-Calendar.
Now we are trying to figure out if there is an attribute to check to see if a member is already registered for a given event, so that we can also distinguish it visually on the monthly calendar as well.