Hi,
My site is in Korean and I need to add Noto Sans from Google fonts to Shopify.
How can I do that, please?
Thanks.
Hi,
My site is in Korean and I need to add Noto Sans from Google fonts to Shopify.
How can I do that, please?
Thanks.
@a1ex - please add this link before the part of your theme.liquid file and then use font in your css
you can use font with this css, for now used for p tag
p{font-family: 'Open Sans', sans-serif;}
Hi @suyash1 ,
I have 2 css files: theme-d.css and theme-m.css.
I added the following to both but I don’t see the font in the theme (I’m using Shella theme), I can’t select it. What am I doing wrong?
p{font-family: ‘Open Sans’, sans-serif;}
I did update the code but I still can’t see the font in the theme, I can’t select it.
@a1ex - you will not see it in theme settings, you can use it in css
I’m not sure I understand what using it in CSS means.
I need the font to be applied to everything on site.
@a1ex - in your css file put this code and check if it is working
p, span, div{font-family: 'Noto Sans', sans-serif;}
Ah, I see how it works now.
So, we’re basically setting the font to be used in the whole site from the HTML tags, so it applies everywhere.
Yeah, it works, the font applies correctly, thanks!
@a1ex - yes exactly, set font to required html tags and it will work everywhere