Hi
In my store I tend to use uppercase for my page headings however with the policy pages they title is automatically in normal sentence case.
Example policy page: https://thetrouvailles.com/policies/refund-policy
If I use the dev tools in Google Chrome I can add a CSS style for the H1 tags using text-transform: uppercase to make the tittle uppercase - I can't work out how to code this into my theme though, I've tried the below but it doesn't work.
.shopify-policy__title.h1 {
text-transform: uppercase !important;
}
Any ideas?
Thanks
Solved! Go to the solution
This is an accepted solution.
Do this to fix it in 20 seconds:
1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > theme.scss.liquid and paste this at the bottom of the file:
.template-policy h1 {
text-transform: uppercase !important;
}
Please let me know whether it works.
Kind regards,
Diego
User | Count |
---|---|
25 | |
22 | |
22 | |
19 | |
12 |