martujv
December 25, 2024, 5:25pm
1
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
Guleria
December 25, 2024, 5:34pm
2
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;
}
martujv
December 25, 2024, 5:51pm
4
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?
martujv
December 25, 2024, 5:56pm
5
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;
}
DaisyVo
December 26, 2024, 2:33am
7
Hi @martujv
To complete your requests, please follow these steps:
Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
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!