Your sites Log in Sign up Menu

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


a year ago, 2 replies   developers   magazine-template   Improve this question

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 a year ago · Improve this answer

Perfect. Works a charm. Thank you!

Answered a year ago · Improve this answer