Setting to change the font size

Images in various formats
Alt tags for images
Font size adjustable

1 Like

Hi there, @Rainer_Lang :wave:

We agree that it would be great t have a setting for changing the font size of the widget elements. If more users upvote this idea, we’ll try to consider it in the future.

As for now, you can use this CSS code to individually change the font size of all widget element:

.es-event-card-content-label {
  font-size: 11px;
}

.es-event-card-content-title {
    font-size: 21px;
}

.es-event-card-content-text {
  font-size: 14px;
}
 .es-marker-label-title {
   font-size: 20px;
 }
 
 .es-marker-label-text {
   font-size: 15px;
 }

This code should be added to the Custom CSS field on the Settings tab of your widget’s settings.


As for the image alt text setting, this is a great idea too, and I’ve moved it to a separate request - Option to set image alt text

I’ve also created a separate request for the image ratio setting - Image Ratio setting. As for now, you can change the image ratio using this CSS code:

 .es-event-card-content-image {
  aspect-ratio: 2/1 !important;
}
1 Like

The text is small in the timeline. Would love to make it bigger.

1 Like

Welcome to the Community, @Adam_Zuckerman :waving_hand:

Thank you so much for the feedback!

We already have a request for the font size setting and I’ve merged your comment with it. If this idea gets more votes, it might be considered in the future.

As for now, you can change the font of each element individually using the CSS code from the message above :slightly_smiling_face: