Shopify themes, liquid, logos, and UX
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 </head>
Now just before to it add this css
h6 {
font-family: "Times New Roman - Regular" !important;
text-transform: uppercase !important;
}
Regards
Guleria
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?
Try to add this css:
h6{
text-transform: capitalize;
}
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
h6 {
font-family: 'Times New Roman - Regular'; /* Ensure fallback fonts */
text-transform: capitalize;
}
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!
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025