Custom fonts
We do not support code customizations. This guide offers a basic reference for advanced users familiar with HTML and CSS. Always test code changes on unpublished theme copies. For assistance, we recommend reaching out to a verified Fluorescent partner.
With Custom CSS, it's possible to add custom fonts with a few edits to your theme code. Custom fonts are uploaded to Shopify Files and then applied manually to different text elements in the Code editor. (Custom fonts will not appear as an option in the Theme Editor's font selector.)
Before deciding to use a custom font, we highly recommend considering one of the hundreds of fonts in Shopify's Font Picker as your first choice, since they are fully supported by all our themes.
Upload fonts to Shopify Files
All font files should be in WOFF and WOFF2 formats. While TTF and OTF can be used, they are not web-supported fonts and may cause issues. You can convert font formats with free tools like CloudConvert.
Using custom fonts may contribute to longer load-times. See our article about balancing features and customizations with your online store speed.
STEPS
In your Shopify Admin:
Go to Content > Files and click Upload files to add your
WOFFandWOFF2files.
Keep this window open for the next step.
Add fonts with Custom CSS in theme editor
After uploading your font files, you can import them in your Theme settings using the Custom CSS field.
STEPS
In your Shopify Admin:
Click Duplicate on your current theme.
Click Customize on the duplicated, unpublished theme version.
In your theme editor (Customize):
Go to Theme settings > Advanced.
Click to open the Custom CSS tab.
Copy and paste the following code on a new line:
@font-face { font-family: "FONT NAME"; src: url("FONT URL") format("woff"), url("FONT URL") format("woff2"); }Replace
FONT NAMEwith the exact name of your font. Example:@font-face { font-family: "Custom Font Name"; src: url("FONT URL") format("woff"), url("FONT URL") format("woff2"); }In your Shopify files, click the link icon to copy the URL and replace
FONT URLfor both theWOFFandWOFF2formats. Example:
@font-face { font-family: "Custom Font Name"; src: url("https://cdn.shopify.com/s/files/1/0518/6692/7292/files/DMSans-Regular.woff?v=1663348292") format("woff"), url("https://cdn.shopify.com/s/files/1/0518/6692/7292/files/DMSans-Regular.woff2?v=1663348302") format("woff2"); }Click Save.
Enter or paste the CSS code into the Custom styles box.
Click Save.
Click Preview to review your changes.
Use the preview link to further test your changes on multiple browsers and devices.
After testing, you can go to your Theme library to Publish the duplicated theme with your changes.
Apply fonts to theme text
Once you've added your font, you can apply it manually to elements of your theme with the CSS code below.
Eclipse groups theme text into 4 categories:
Headings (includes logo text)
Body
Navigation
Buttons.
Use the code in the steps below to override the font settings in your theme editor.
STEPS
In your theme editor (Customize):
Copy and paste the code below on a new line in the Custom CSS field of your theme settings.
--font-heading applies to the store name, headings, and subheadings for pages and sections.
--font-body applies to lines of text and product listings.
For each font you want to change, replace
unsetwith the custom font name and delete the comment tags (/*and/on either side) . Example:(Optional.) If your font has multiple weights or styles, replace
unsetwith the values for those properties. Example:Click Save.
Click Preview Store to test and troubleshoot your code before publishing the theme.
Apply fonts to specific elements
Applying fonts to specific elements requires knowing how to use your browser's Inspector tool and familiarity with CSS selectors.
If that sounds like you, you can find and copy the CSS selector with the Inspector tool, then edit and use the following example below:
Adding fonts with custom.css file
While we recommend using the available Custom CSS settings in the theme editor, you can use Eclipse’s custom.css file to organize your custom code in a single place.
Enable useCustomCSS
To import the custom.css file, you need to enable useCustomCSS in the theme-globals.liquid file.
Last updated