posted this in:
For some bizarre reason; WordPress has decided to start hyphenating my posts. I don’t recall it ever doing this originally when I used to use WordPress all those years ago, but it’s ridiculous now. It’s not really a great way to present readable content (at all!)
Luckily it’s also much easier nowadays than having to hack apart the style.css in the theme files editor in the Settings section.
Now, I can just customize stuff > add additional custom CSS and paste in…
.entry-content,
.entry-summary,
.widget-area .widget,
.comment {
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
word-wrap: normal;
}
et voila!