Good afternoon Michael and welcome back!
Thank you for reaching out to us.
We are sorry to hear about the display of single events no longer being good on mobile.
I would love to help you with this topic.
I went ahead and checked your website and I see what you mean.
It turns out that the following CSS rule is causing this:
#tribe-events-content.tribe-events-single {
background: white;
margin: 0 0 30px;
padding: 50px;
}
Try adding the following CSS rule to your theme’s style.css or custom CSS section:
@media screen and (max-width: 768px) {
#tribe-events-content.tribe-events-single {
padding: 8px;
}
}
Let me know if that helps.
Have a great day!
Geoff B.