If you check the Calendar’s CSS stylesheet you’ll see that it’s hiding the text by design on small screens. You can change this by going to the Appearance -> Customize section of the admin, and there is a tab labeled ‘Additional CSS’. If you go into the customizer, you can add some code like this to unhide the event titles. Please paste the code between the dashed lines into the stylesheet:
—————————————-
@media only screen and (max-width: 480px){
#espresso_calendar .fc-event-title {
display:block;
}
}
The support post ‘Calender Isssue on different Smartphones’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.