Archived topic
Header text gets cut off
3 replies · Started by Renske on May 28, 2022
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!
Hi there,
Any chance you can link us to the site in question?
You can use the private information field.
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
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;
}