How do I adjust the colour of the time?

1 Like

Hi @Joel_Greaves

Add the desired code to the Custom CSS field on the Style tab of your Event Calendar widget’s settings:

grafik

/*the numbers of the time*/
.eapp-events-calendar-time-time {
  color: black;
}
/*time background*/
.eapp-events-calendar-time-component{
  background-color: white;
}
/*icon*/
.eapp-events-calendar-time-icon{
  fill: red;
}
2 Likes