Wrapping Text #9
|
Has anyone figured out how to wrap the text of a calendar entry in either the weekly or monthly view? |
Answered by
KristjanESPERANTO
Jan 21, 2026
Replies: 2 comments
|
It doesn’t support text wrapping. |
0 replies
|
You should be able to enable text wrapping for calendar entries using custom CSS. Add this to your Option 1: Allow unlimited text wrapping /* Allow event titles to wrap to multiple lines */
.CX3 .event .headline .title {
white-space: normal !important;
overflow: visible !important;
text-overflow: unset !important;
}Option 2: Limit to 2 lines with ellipsis (recommended) /* Wrap event titles to maximum 2 lines, show ellipsis if longer */
.CX3 .event .headline .title {
white-space: normal !important;
overflow: hidden !important;
display: -webkit-box !important;
-webkit-line-clamp: 2 !important;
-webkit-box-orient: vertical !important;
}Note: If you have .CX3 .event .headline .title.marquee .marqueeText {
animation: none !important;
}This is intentionally not built into the module as text wrapping can cause layout issues with the grid system (events may overlap). Custom CSS gives you full control over the behavior. |
0 replies
Answer selected by
KristjanESPERANTO
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should be able to enable text wrapping for calendar entries using custom CSS. Add this to your
custom.css:Option 1: Allow unlimited text wrapping
Option 2: Limit to 2 lines with ellipsis (recommended)
Note: If you have
useMarqu…