Shopify themes, liquid, logos, and UX
I'm using the Prestige theme which has an option to make all headings uppercase. This overall looks good in my store apart from a few sections where I would like to change the heading font to lowercase.
Solved! Go to the solution
This is an accepted solution.
Hello @Jarch2 ,
You can assign css to section ID
e.g.
#section-id {
text-transform: lowercase;
}
or you can develop an option in sections to control it dynamically without editing the code.
Regards
Guleria
This is an accepted solution.
Hello @Jarch2 ,
You can assign css to section ID
e.g.
#section-id {
text-transform: lowercase;
}
or you can develop an option in sections to control it dynamically without editing the code.
Regards
Guleria
How do I locate the section id? I know how to inspect but I don't know what the id looks like.
With inspect tool get the parent element ID
e.g.
#shopify-section-template--19377887183064__text_with_image_kHBzWF .SectionHeader__Heading.Heading {
text-transform: lowercase;
}
It comes up with an error saying the section ID selector is not supported
Use it in theme.css or any css related file.
Silly mistake by me, thanks!
Hi @Jarch2
Yes we can use custom css to change it. can you share me the link to let me give you the solution
let try to add custom css below for example home heading
.features--heading-uppercase .Heading {
text-transform: lowercase;
}
the result:
After applying the code to the CSS section, it doesn't work. It does work when applied to the theme CSS but it works everywhere which isn't what I want.
can you try this one in theme.css
.features--heading-uppercase .shopify-section--bordered .Heading {
text-transform: lowercase;
}
It worked, but it affected the font of every section.
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