Prevent hyphenated titles?
I’m using the Magazine template but many of my titles now appear with hyphenated words on the main page. Is there a way to stop this from happening? Thanks in advance
Yes! You can prevent the hyphenation by removing lines 322 to 329 of css-theme.css from the magazine template:
.lh-title {
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
You'll need to fork an editable copy of this template, then open up the template editor to make changes to the source code. Please let me know if you have any questions about this or anything else
Answered 2 years ago · Edit answer