Re: Can I only change the typography of the blog page?

Solved

Can I only change the typography of the blog page?

KimKimKimKim
Excursionist
16 0 5

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-ko...

 

 

Thank you!

Accepted Solution (1)

MaverickStudio
Shopify Partner
101 32 35

This is an accepted solution.

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.

♥ If you found my solution helpful, please consider giving it a  Like and marking it as the  ✔ Accepted Solution


Try our WhatsApp Chat Button Widget with multipe agents. Supachat: WhatsApp Chat Button


A Product of  Maverick Studio

View solution in original post

Replies 2 (2)

MaverickStudio
Shopify Partner
101 32 35

This is an accepted solution.

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.

♥ If you found my solution helpful, please consider giving it a  Like and marking it as the  ✔ Accepted Solution


Try our WhatsApp Chat Button Widget with multipe agents. Supachat: WhatsApp Chat Button


A Product of  Maverick Studio

KimKimKimKim
Excursionist
16 0 5

Thank you so much, @MaverickStudio !!!