Skip to content
Discussion options

You must be logged in to vote

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

/* 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 useMarqu…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by KristjanESPERANTO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants