RJ2023
(RJ2023)
July 20, 2023, 11:36am
1
Hello!
I’m currently using the Dance Studio Schedule template and unfortunately my event names are quite long! I was wondering if I could wrap the text so that the users will be able to see the full event name when they see the calendar instead of it trailing off. What CSS code would I need for this?
Thank you!
1 Like
Max
July 20, 2023, 11:53am
3
Hi @RJ2023
We are ecstatic that you’ve chosen to become one of us! Welcome to Community
We’ll be happy to check if there is any option to customize the widget this way.
Your request is now in the capable hands of our dev. We promise to keep you posted
RJ2023
(RJ2023)
July 20, 2023, 12:04pm
5
Hi Max!
Thank you so much for your quick reply, okay that sounds perfect!
1 Like
Masha
(Masha)
July 20, 2023, 12:34pm
6
Hi @RJ2023 !
This CSS code should do the job:
.fc-event-title {
overflow-wrap: break-word;
white-space: normal;
}
And if you would also like to display full event times, you can use this code instead:
.fc-event-main {
overflow-wrap: break-word;
white-space: normal;
}
Hope this helps!
2 Likes
RJ2023
(RJ2023)
July 20, 2023, 12:49pm
7
This is perfect!
Thank you so much Masha for your help and quick response! You’re amazing!
3 Likes