View Single Post
Old 01-16-2019, 09:04 PM   #23
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by Psymon View Post
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&zwj;ting word</p>
Something along those lines would probably even force ADE to not render certain ligatures.

Last edited by Tex2002ans; 01-16-2019 at 09:09 PM.
Tex2002ans is offline   Reply With Quote