Shopify themes, liquid, logos, and UX
Hi everyone, I'm struggling to change the font in my store. I feel it looks too robust, and I'd like to use Chivo Narrow or Domaine, but I can't seem to change it under Typography. No matter which font I choose, nothing seems to change. Also, when I try to make some text bold, it appears bold in the editor but not in my theme. Does anyone have a solution for this?
Solved! Go to the solution
This is an accepted solution.
Hi @sofiakarkus ,
Add Custom Fonts:
If Chivo Narrow or Domaine isn’t available in your theme’s default options, you may need to add them manually using custom code.
Here’s how you can do it:
First, ensure that the fonts are available through a web font service like Google Fonts (for Chivo Narrow) or Adobe Fonts (for Domaine).
*Add the following code to your theme’s theme.liquid file under the <head> section:
<!-- For Chivo Narrow -->
<link href="https://fonts.googleapis.com/css2?family=Chivo+Narrow:wght@400;700&display=swap" rel="stylesheet">
<!-- For Domaine (Assuming it's available via Adobe Fonts) -->
<link rel="stylesheet" href="https://use.typekit.net/your-adobe-font-kit-id.css">
*Next, apply the font to your theme’s CSS. Go to Online Store > Themes > Actions > Edit code, then add the following to your styles.css file:
body {
font-family: 'Chivo Narrow', sans-serif;
}
/* or for Domaine */
body {
font-family: 'Domaine', serif;
}
*Bold Text Issue:
If bold text isn’t appearing as bold on your live site, there might be custom CSS that’s overriding it.
You can force the bold styling by adding this to your CSS:
strong, b {
font-weight: bold !important;
}
If none of the above works, inspect your site’s CSS using the browser’s developer tools (right-click on the element and select "Inspect").
Look for any custom CSS that might be overriding the Shopify editor settings.
I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans
Hi @sofiakarkus , kindly check out the below videos.
And
And
And
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
This is an accepted solution.
Hi @sofiakarkus ,
Add Custom Fonts:
If Chivo Narrow or Domaine isn’t available in your theme’s default options, you may need to add them manually using custom code.
Here’s how you can do it:
First, ensure that the fonts are available through a web font service like Google Fonts (for Chivo Narrow) or Adobe Fonts (for Domaine).
*Add the following code to your theme’s theme.liquid file under the <head> section:
<!-- For Chivo Narrow -->
<link href="https://fonts.googleapis.com/css2?family=Chivo+Narrow:wght@400;700&display=swap" rel="stylesheet">
<!-- For Domaine (Assuming it's available via Adobe Fonts) -->
<link rel="stylesheet" href="https://use.typekit.net/your-adobe-font-kit-id.css">
*Next, apply the font to your theme’s CSS. Go to Online Store > Themes > Actions > Edit code, then add the following to your styles.css file:
body {
font-family: 'Chivo Narrow', sans-serif;
}
/* or for Domaine */
body {
font-family: 'Domaine', serif;
}
*Bold Text Issue:
If bold text isn’t appearing as bold on your live site, there might be custom CSS that’s overriding it.
You can force the bold styling by adding this to your CSS:
strong, b {
font-weight: bold !important;
}
If none of the above works, inspect your site’s CSS using the browser’s developer tools (right-click on the element and select "Inspect").
Look for any custom CSS that might be overriding the Shopify editor settings.
I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans
Thank you so much! it worked! 🙂
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025