How can I modify text case in Debut theme titles?

I’m using the Debut theme and trying to change certain header titles from uppercase to lowercase (or just have them appear how I’ve typed them with only the first letter capitalized). Currently, I’m trying to do this for the Feature Collection section and the integrated Instagram feed title. They appear in all caps, even if I’ve typed it as all lowercase. I don’t have much coding knowledge but willing to figure it out with some clear instruction!

2 Likes

@TheLongProject

Please share your store URL.

@TheLongProject

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

1 Like

hello @TheLongProject

Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.

@dmwwebartisan @Kinjaldavra @KetanKumar Thanks! It’s www.tarpclothing.com

2 Likes

@TheLongProject

Could you please provide a screenshot of which section title you are talking about?

I checked your titles, actually, it is problem with your font family.

@TheLongProject

thanks for it

the issue was generated by this font family normal font doesn’t allow this

font-family: 'Cramaten Headers' !important;
1 Like

@KetanKumar I see. I used the Fontify app to upload the specific brand font (because Shopify didn’t have it available). So is there a way I can change the case of the headers?

@TheLongProject

can you please try other fonr family or remove h2 font family on app

1 Like

hello @TheLongProject

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

#shopify-section-16237084921d02b827 .ooo-instagram-header__title{
          text-transform: lowercase !important;
}
#shopify-section-collection .section-header h2{
       text-transform: lowercase !important;
}

@Kinjaldavra That worked! Thank you so much!