Gio715
November 24, 2020, 7:29pm
1
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.
Gio715
November 24, 2020, 10:47pm
3
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
Gio715
November 25, 2020, 1:41pm
6
@dmwwebartisan Perfect! That did it. Thank you so much!!!
1 Like
Boiken
March 6, 2021, 3:38pm
7
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!