Hi, does anyone have an idea how to add an Adobe Font to the Theme Editor? I want to be able to choose the Adobe Font from the Theme Editor’s typography list, just as I can choose any of the fonts included in Shopify. I use the Dwell Theme.
I don’t want to manually adjust the code every time I use the Adobe Font.
Great question, this comes up quite a bit when store owners want to bring in Adobe Fonts and still keep things manageable inside the Theme Editor.
Unfortunately, Shopify’s Theme Editor doesn’t natively integrate with Adobe Fonts the same way it does with Google Fonts. That’s why you don’t see Adobe Fonts in the typography dropdown by default. But you can absolutely add them in a way that doesn’t require you to re-edit code every time. Here’s a workflow that usually works well:
Get the Adobe Embed Code
In your Adobe Fonts account, generate a web project and copy the embed <link> or script they provide.
Add It to Your Theme
Go to your Shopify admin → Online Store → Themes → Edit code.
Open theme.liquid (under Layout) and paste the Adobe Fonts embed code inside the <head> tag.
Create CSS Classes for Your Adobe Font
In base.css (or theme.css depending on your theme), declare your Adobe Font like this:
.adobe-font {
font-family: "Your Adobe Font Name", sans-serif;
}
Make It Available in the Theme Editor
Shopify’s Theme Editor can’t “magically” show Adobe Fonts in the dropdown, but what you can do is assign the .adobe-font class to certain sections/typography settings. That way, once it’s linked, you don’t need to keep editing raw code. You just select the style or section where you applied the class.
If you also like, I can walk you through the schema edit step-by-step, it’s not something too hard once you see it.
Unless Shopify permits the loading of third-party fonts, merchants cannot select fonts from external apps or plugins within Shopify themes. Therefore, this requirement is currently difficult to implement.