Hyphenation in paragraph

Hi There,

I have a problem with long words in paragraphs especially for responsible webpages. For example. If I use a table with 6 rows and paragraphs in it and downsize the screen (ipad) the long words overlap the other rows. What can I do to automate the hyphenation in the paragraph sections?

Would be great if someone have an answer. : )

Hello @Bigwig, you can do that with this steps:

  1. Add a Div bric where you want the text.

  1. Inside that Div add the text you need by adding H1, 2, 3, 4, 5, 6, paragraph.

  1. Give the Div a class: For example “hyphenation”.

  1. Go to page settings and in “Add Code” button paste the following code:

<style>
div.hyphenation {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
</style>

Hope it helps you…

Yes! It works. Thanks so much! : )