Plugin Author
pepe
(@pputzer)
Please clear your browser and/or page cache.
Plugin Author
pepe
(@pputzer)
@maced Did clearing the cache(s) fix the problem? Unchecking “Enably hyphenation” should indeed disable hyphenation completely.
Thread Starter
maced
(@maced)
Hi Pepe,
sorry for my late response (it was a rollercoaster-day yesterday, ‘no time to breathe’).
Anyway did clear browser and page cache, but no difference.
I did that with different browsers.
___________________________
I also tried to put some code in the xtra css:
.site-content article {
word-wrap: normal;
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
}
.widget-area .widget {
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
word-wrap: normal;
}
In the Twenty Fifteen Child theme I changed:
5 Select where to save new styles:
To: Separate Stylesheet
6 Select Parent Theme stylesheet handling:
To: Do not add any parent stylesheet handling.
___________________________
this did not work either.
I must be making a mistake somewhere but I cannot figure out where…
So I’m lost 🙁 (for the time being 😉
Any suggestions? I appreciate it.
Plugin Author
pepe
(@pputzer)
I‘d need to examine the page in question. Could you provide a link?
However, we may be talking about two different things. The checkbox is only about server-side hyphenation. What the browser does on its own can‘t be controlled by thr plugin. (Your CSS snippets might be overridden by more specific styles.)
Thread Starter
maced
(@maced)
https://winkelcentrumkadobon.nl/
Ok, I thought that the checkbox ensured that no hyphenations were allowed, not even by browsers. There must be a way to show texts without any hyphenations in different browsers?
So I have to see if there are specific styles that destroy the snippets? :/
Plugin Author
pepe
(@pputzer)
You can try to use
* {
word-wrap: normal !important;
-webkit-hyphens: none !important;
-moz-hyphens: none !important;
hyphens: none !important;
}
to do that.
Thread Starter
maced
(@maced)
Hi Pepe,
you are great, your solution works great.
In the ‘Customizer’ at ‘Extra CSS’ I put the next lines:
div {
word-wrap: normal !important;
-moz-hyphens: none !important;
-ms-hyphens: none !important;
-webkit-hyphens: none !important;
hyphens: none !important;
}
And it works for all browsers (on my Mac) 🙂
Great thanks for the solution.