Quote:
Originally Posted by Psymon
I had tried all of that before, except for that first line (with "no-common-ligatures"), but just added that in and still no luck -- my long-"s" + "t" lig still renders out.
|
1. "Renders out" in WHAT?
iBooks? ADE? Sigil? Chrome? Firefox? [...]
What program/device are you testing this in?
2. "st" is a Discretionary Ligature. That means it would fall under "dlig":
https://helpx.adobe.com/fonts/using/...ntax.html#dlig
(And/or Historical "hlig" (?).)
3. You mentioned you were pasting CSS from elsewhere. Can we see your entire CSS file?
You probably have something overriding something else.
If it's the EPUB you linked to in Post #6, you inserted:
Code:
-moz-font-feature-settings: "hist=1, liga=1, dlig=1";
-ms-font-feature-settings: "hist", "liga", "dlig";
-webkit-font-feature-settings: "hist", "liga", "dlig";
-o-font-feature-settings: "hist", "liga", "dlig";
font-feature-settings: "hist", "liga", "dlig";
in about a million different locations.
Remember, KISS stupid. :P
Also, (ugly hack), I saw a Stack Exchange answer mentioning sticking a zero-width joiner (‍) between the st to stop the ligature from working:
Code:
<p>This is a tes‍ting word</p>
Something along those lines would probably even force ADE to not render certain ligatures.