• Resolved korbball

    (@korbball)


    Hi there

    this is a really easy to use Plugin, great Job!

    Is there a way to Prevent some Long words from wrapping?

    e.g:
    (Abgesagt) Trainingsweekend u
    nd Auftritt Neukirch

    or:
    (VERSCHOBEN) Mannschaftsfü
    hrersitzung TGM Sommer 2020

    thanks for your support
    korbball

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author room34

    (@room34)

    Hi… I apologize for the delay in getting back to you.

    I’m a bit confused as I compare the text in your post here vs. the text on the page on the website. It looks like hyphenation is working properly on the site. I have not seen cases of words wrapping without hyphenation, but that is something that can vary from browser to browser.

    By default, the plugin hyphenates long words (again, as controlled by the browser) because some of the layouts have small spaces that benefit from hyphenation. If you do not want hyphenation, you can override it with some custom CSS:

    .ics-calendar .event * {
    	-ms-word-break: normal;
    	word-break: normal;
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	-ms-hyphens: none;
    	hyphens: none;
    }

    Considering that many words in German are quite long, I would recommend at least keeping hyphenation turned on. To eliminate just the forced word breaks, while leaving hyphenation on, you can use this CSS:

    .ics-calendar .event * {
    	-ms-word-break: normal;
    	word-break: normal;
    }

    ICS Calendar Pro also has an option for this setting in the Customizer.

    Thread Starter korbball

    (@korbball)

    hi @room34

    Thanks for your help.

    This:

    .ics-calendar .event * {
    	-ms-word-break: normal;
    	word-break: normal;
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	-ms-hyphens: none;
    	hyphens: none;
    }

    worked perfekt.

    thx korbball

    • This reply was modified 4 years, 6 months ago by korbball.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘no wrap for titles’ is closed to new replies.