Possibility to change the font colour of the text

You can change the font colour of the date but there is no option to change the font colour of the text.

1 Like

How about being able to change the font colour of the text?

Hi @CUE-comms :wave:

You can change the text for Heading and Date on the Style tab of your widget’s settings, and I see that you already found these options.

However, I agree that it would be awesome to change the text color of all elements right in the configurator and we’ll try to consider this opportunity in our future updates.

As for now, it’s possible to do this using a CSS code.

I’ve shared your request with our devs and will let you know once the solution is provided :slightly_smiling_face:

Hi @CUE-comms :wave:

I see that my colleague Renata has already provided you with a special CSS code for changing the font color in the widget:

.eapp-events-calendar-events-calendar-component * {
color: #0067B9 !important;

Just in case, if you want to change the color of all the elements in the widget at once, you can use this code:

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