Time-line change font family to cairo or google fonts

how to change the font family of all time line widget and change it to google fonts like cairo or cairo play

1 Like

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

This code will help you change the font of all widget elements:

.es-widget-title {
   font-family: Calibri;
 }

.es-event-card-content-label {
   font-family: Calibri;
 }

.es-event-card-content-title {
   font-family: Calibri;
 }

.es-event-card-content-text {
   font-family: Calibri;
 }
 .es-marker-label-title {
   font-family: Calibri;
 }
 
 .es-marker-label-text {
   font-family: Calibri;
 }

Feel free to change Calibri with any other font, providing it’s installed on your website and supported by your browser.

Add the resulted code to the Custom CSS field on the Settings tab of your widget’s settings and let me know if it worked :slightly_smiling_face:

1 Like