Site logo

Archived topic

Header text gets cut off

3 replies · Started by Renske on May 28, 2022

Viewing posts 1–4 of 4

Hi there,

How do I make sure my header texts are mobile responsive? As you can see in the screenshot (see private info) the text on my blogpage, for example, gets cut off in several places. Also happens to my homepage header when the text is too long.

Thanks!

Sorry, I forgot about that. See below.

Hi there,

try this CSS to hyphenate if necessary:

h1 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
This archived topic is closed to new replies.