Change Font in H6 Headings

Hello!

First of all, Merry Christmas!

Basically I want to change the font for all my h6 headings.

In this case, I want to apply the “Times New Roman - Regular” font, which is available in my shopify theme.

I also would like to have it Capitalized, with the first letter of each word being in caps.

My theme is Stiletto, my website is https://zght3jttyisvd9tj-60150284501.shopifypreview.com and the password is y22

I would really appreciate some help

Hello @martujv ,

Merry Christmas!

Edit theme.liquid

Search for

Now just before to it add this css

h6 {
    font-family: "Times New Roman - Regular" !important;
      text-transform: uppercase !important;
}

Regards
Guleria

Try to add this css:

h6{
    text-transform: capitalize;
}

Hello! I tried the code but nothing changed. I can see that the Times New Roman font is available in my theme’s editor page:

So why is it not working?

This doesn’t include the font I want to use

try this code

h6{
    text-transform: capitalize !important;
    font-family: "Times New Roman", Times, serif !important;
}

Hi @martujv

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
h6 {
    font-family: 'Times New Roman - Regular'; /* Ensure fallback fonts */
    text-transform: capitalize;
}

I hope this helps

Best,

Daisy

Hello, @martujv , would you like to specify the h6 headings name, because from class it’s easy to create code for you.. Hope you will get my point
Thanks!