Text Colour and elements for Event Calendar

Hello!

I’m trying to have a specific colour for my event text (and elements) as the text colour is responsive to the background colour.

I have used CSS to override the text colour for the yellow event but the time clock and location is still black. Do you have any CSS to also override these?

CSS used:

.eapp-events-calendar-events-calendar-component * {
color: white !important;
}

3 Likes

Hi @Billie_Meredith

.eapp-events-calendar-time-icon{
fill: white !important;
}
.eapp-events-calendar-location-icon{
fill: white !important;
}
2 Likes

Hey there, and apologies for the delayed response, @Billie_Meredith!

The code provided by Sina works great, feel free to check it out :slightly_smiling_face:

@Sina, thanks a ton for your input!