CSS: Need No Hyphen code for laptop AND tablet devices
-
I entered this code:
Appearance > Customize > Custom Design > CSS tab code:.entry-content {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
word-wrap: normal;
}On laptops, the code works; on tablet device (iPad), it doesn’t. Is there an additional code I need to enter to eliminate hyphens across devices?
Thanks.
The blog I need help with is: (visible only to logged in users)
-
Hi there, change the selector on the code you have to the following
p, ul, ol, dl, blockquoteso that it looks like this
p, ul, ol, dl, blockquote { -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; word-wrap: normal; } -
-
- The topic ‘CSS: Need No Hyphen code for laptop AND tablet devices’ is closed to new replies.