Font design from Header pages,Footer pages, Cart Page

Hello, I am using Craft Theme.
All my home page, product pages font design are Arial.
I changed to Arial using a coding someone gave me in my previous question.
However, I realized the font designs from Header pages, Footer Pages, Cart Page is not ARIAL.
Can someone help me with this step by step.
Thanks.

Hi @Pyimk ,

Instead of changing the font family for each section individually, you can apply the font change universally by adding the following code to your base.css file:

h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5, p, a, div, span, button {
    font-family: Arial !important;
}

This will ensure that the Arial font is applied across all elements, including the header, footer, and cart pages.

I hope this helps! If not, please provide url of website.

If it does, please like it and mark it as a solution!

Regards,
Sweans

1 Like