Change fonts in timeline

How can I change the fonts on the timeline? I would like the title to not be bold and a different font than the rest. Can I also change the font of the action button?

1 Like

Hi there, @Deborah_Posadas and welcome to the Community :waving_hand:

Sure! This code will help you change the font family and font weight of the event titles:

.es-event-card-content-title {
  font-family: Times New Roman !important;
  font-weight: 300;
}

And here is the code to change the font family in the CTA buttons

[class*="ButtonBase__Ellipsis"] {
  font-family: Calibri!important;
}

Both codes should be added to the Custom CSS field on the Settings tab of your widget’s settings :slightly_smiling_face:

1 Like