Words on Page gets broken up with hyphenation
-
Hi, some words on my Pages get broken up by hyphenation. As I prefer not to have hyphenation, what CSS code can I to address this? Thanks
The blog I need help with is: (visible only to logged in users)
-
Thanks, I used the following CSS code provided in the link you gave but the text still appears hyphenated. Any idea what went wrong?
.page-content {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
word-wrap: normal;
}.nav-links {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
word-wrap: normal;
}.comment-content {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
word-wrap: normal;
}.widget {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
word-wrap: normal;
}
- The topic ‘Words on Page gets broken up with hyphenation’ is closed to new replies.