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