How can I capitalize the first letters in my collection text?

Hi all,

I’m wondering how to capitalize the first letters in the text in my site below:

I’m using the theme named “Supply”

I went through Edit Language to see how to edit but it seems coded:

I’ve looked through all instances where the text exists in the theme and the first letters are both capitalized. The website is currently not live. Let me know if anyone can assist!

Thank you,

Gio

Hi @Gio715 ,

This is also possible through css.

Please share your store url. I will share some css code for this.

Thanks! Does it matter that the website is not live?

fulldeck.shop

@Gio715

Please share your website password. You can DM me.

Thanks!

@Gio715

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.section-header--right {
    text-transform: capitalize;
}

Hope this helps.

Thanks!

2 Likes

@dmwwebartisan Perfect! That did it. Thank you so much!!!

1 Like

Hello:)

I was just wondering what would be the way to capitalize all text on the theme. ??

1 Like

@Boiken

Well, I don’t know which theme you are using but it simply applies to the body text if you want to apply capitalization to the theme.

Please try the following code.

body {
    text-transform: capitalize;
}

Hope this helps.

Thanks!