Can I only change the typography of the blog page?

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:

https://kimspups.com/blogs/blog-5/do-you-know-about-the-coton-de-tulear-the-most-popular-puppy-in-korea-in-2024

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 !!!