See how the logo and title are one different lines. Could you make them on the same line to use less screen space?
2 Likes
Hey there, @Matt_Golden and welcome to the Community
Sure! I’ve passed your request on to the dev team and will get back to you tomorrow
Hi @Matt_Golden
Unfortunately, it’s impossible to display title and image in 1 line. Other elements like time, venue and description will change their position as well. Here is how it will look:
If you like this result, please the code below in the Custom CSS field on the Style tab of your widget’s settings
@media (max-width: 480px) {
.eapp-events-calendar-list-item-info {
flex-direction: row;
flex-wrap: nowrap;
gap: 10px;
}
}