How to display image and event name on 1 line on mobile

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 :waving_hand:

Sure! I’ve passed your request on to the dev team and will get back to you tomorrow :slightly_smiling_face:

Hi @Matt_Golden :waving_hand:

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 :slightly_smiling_face:

@media (max-width: 480px) {
  .eapp-events-calendar-list-item-info {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
}