Hi, thanks for reading.
I only want to change our homepage’s blog’s typography.
I think that I need to change the code, but unfortunately, I don’t know how.
Is there any good way to fix this?
Our homepage and the post on our blog are:
Thank you!
Hi, thanks for reading.
I only want to change our homepage’s blog’s typography.
I think that I need to change the code, but unfortunately, I don’t know how.
Is there any good way to fix this?
Our homepage and the post on our blog are:
Thank you!
Hey @KimKimKimKim ,
You can follow these steps::
Step 1: Go to Online Store > Theme > Edit code > find theme.css file and add the following
.page-blog,
.template--article {
--font--heading--family: sans-serif;
--font--paragraph--family: sans-serif;
}
Please note that this will set a fallback font available on all devices as the default. If you want a custom font, use Google Fonts to load it via the @import directive.
Thank you so much, @MaverickStudio !!!