Eventum - Change Date Color - Question | JoomShaper
🎃 Halloween Sale is Live! Get 35% OFF on all plans. Sale ends soon! Get Offer

Eventum - Change Date Color

AC

Arthur Cain

Template 6 months ago

How do I change the color of the dates in the Event Schedules

0
2 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 6 months ago #190788

Hi Arthur.

You forgot to share example URL or screenshot link (I have to be sure that we both thining about the same).

But let's say that we talk about "day" color

info_2763_2025.gif

In that case you have to use Custom CSS to override them, example with new colors(!)

.eventum-schedules.layout-addon .eventum-schedule:nth-child(1) .scedule-date-day, 
.eventum-schedules.layout-classic .eventum-schedule:nth-child(1) .scedule-date-day 
{color: green; }

.eventum-schedules.layout-addon .eventum-schedule:nth-child(2) .scedule-date-day, 
.eventum-schedules.layout-classic .eventum-schedule:nth-child(2) .scedule-date-day 
    {color: yellow;}

.eventum-schedules.layout-addon .eventum-schedule:nth-child(3) .scedule-date-day, 
.eventum-schedules.layout-classic .eventum-schedule:nth-child(3) .scedule-date-day 
    {color: blue; }

.eventum-schedules.layout-addon .eventum-schedule:nth-child(4) .scedule-date-day, 
.eventum-schedules.layout-classic .eventum-schedule:nth-child(4) .scedule-date-day 
    {color: pink; }

.eventum-schedules.layout-addon .eventum-schedule:nth-child(5) .scedule-date-day, 
.eventum-schedules.layout-classic .eventum-schedule:nth-child(5) .scedule-date-day 
    {color: brown; }

.eventum-schedules.layout-addon .eventum-schedule:nth-child(6) .scedule-date-day, 
.eventum-schedules.layout-classic .eventum-schedule:nth-child(6) .scedule-date-day 
    {color: red; }  
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 6 months ago #190789

If you thought about different ones, just use Inspector from your browser (built-in tool) and preview used class name.

Firefox : Ctrl +Shift + C

0