Skip to main content

H1 Text wrap or ­ element

Comments

1 comment

  • Ariel H.

    Hi Patryk,

    Thank you for contacting us.

    Unfortunately, this is not possible at the moment.  You can try to fix it using CSS as shown in this example:  https://i.imgur.com/huHMBlN.png

    element {
      hyphens: auto;
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      -o-hyphens: auto;
      hyphenate-character: "-";
    }

    Or you can include this in Custom CSS: https://i.imgur.com/iLBtzpW.png

    h1{
      hyphens: auto;
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      -o-hyphens: auto;
      hyphenate-character: "-";    
    }

    Please try this and let me know how it goes.

    Best regards,
    Ariel H.

    0

Please sign in to leave a comment.