Hi, so i have tried a few ways now to fix this but nothing seems to be working. I do not want the heading on the featured collections / collections list to be all capital letters, because i am trying to use an imported google font and this specific font looks silly all capitals (it is pinyon script). (for some reason there is no option to do basic lowercase on my theme, even if i type in lowercase it just makes it capitals)
I have tried to do the coding to change this but every time i try to save it says an error and can not save changes, so i must be doing it wrong.
this is my website, you can see both the collections headers i am wanting to change on the main page under âshop the collectionâ and âyour favouritesâ - www.bonnibisous.com
i am hoping to sort this ASAP as i can not move further with finishing my website until i figure out this font problem, as i need to change over all my listings to lowercase and so on aswell. but cant change them until i know i can change the main page headers to match.
Thanks!!!
Hi @bonnibisous !
Thereâs a text-transform set on your h2 title tags which is causing this issue. You can either change it from uppercase to lowercase or none depending on what you would prefer.
Go to Admin > Theme > Customise > edit code > theme.scss.css > around line 1441
Changing text-transform from uppercase to lowercase should achieve the result below:
From:
h2, .h2 {
font-size: 1.1875em;
text-transform: uppercase;
letter-spacing: 0.1em;
}
To:
h2, .h2 {
font-size: 1.1875em;
text-transform: lowercase;
letter-spacing: 0.1em;
}
Or setting the text-transform to none, will make the text the same letter case that you type in:
h2, .h2 {
font-size: 1.1875em;
text-transform: none;
letter-spacing: 0.1em;
}
Hope this helps!
1 Like
OMG, thankyou so much! its finally done 
1 Like
Hi again, sorry ive just realised i only managed to do it for the first heading and now cant figure out how to do the âyour favouritesâ section, do you have any ideas? thanks again!!!
Hi!
It seems the âYour Favouritesâ section has hard coded uppercase styling, which overrides the CSS text-transform property.
Hereâs how you can fix it:
Head to Admin > Theme > Customise > Home page, and youâll be able to re-write the h2 title to lower case/mix of cases, similar to your âshop by collectionâ section. Then the text-transform css will work as expected.
Let me know if you need more details!
I have accepted your request to collaborate as i cant quite figure it out, thanks so much for helping!! 