I want to convert all my text in the Dawn theme to lowercase.
Obviously all editable text that I’ve written is lowercase, but the automatic text in places like the cart page, buttons etc. are in sentence case.
I was able to do this in my old theme debut using some code I got off here, but I can’t find it or anything that works for the new theme.
You may be able to accomplish it with just a css snippet and applying an important flag to it, assuming there isn’t a different text transform with an important flag:
body {
text-transform: lowercase!important;
}
1 Like
Where am I supposed to put this code? I have minimal coding experience.
In dawn theme you could post it to the very bottom of your base.css file in your assets folder.
1 Like