When I enable Typekit fonts and select, on /admin/appearance/fontyourface, "add selector in theme CSS," the following help text appears below (using the Typekit font "Proxima Nova Alt Condensed"):

font-family: "'proxima-nova-alt-condensed'";

That syntax is invalid and won't work -- note the presence of both double AND single quotes. The correct syntax is:

font-family: "proxima-nova-alt-condensed";

which does work. This may be true for other font providers as well (I haven't tried all of them) but I know it is NOT an issue with Google Web Fonts (that provides the correct syntax) so it seems like it's probably specific to Typekit.

Comments

Drave Robber’s picture

Status: Active » Closed (duplicate)

I updated the patch in #1867650: 'Add selector in theme CSS' instructions are broken and incomplete to take care of this as well.