Good afternoon Thomas and welcome back,
Thank you for reaching out to us.
We are sorry to hear about the event thumbnails and title not displaying on mobile.
I would love to help you with this topic.
The issue comes from the CSS on your site. It’s hard to say from where exactly since the stylesheets are going through autoptimize.
In any case, the culprit is the following:
@media only screen and (max-width: 768px) {
.tribe-events-list .tribe-events-event-image {
float: left;
}
}
This needs to be changed to
@media only screen and (max-width: 768px) {
.tribe-events-list .tribe-events-event-image {
float: none !important;
}
}
Best regards,
Geoff B.