I am looking to change all font on my website to uppercase. I have tried to add this line below to the theme.scss.liquid asset but it didn’t work. Any help?
{ text-transform: lowercase !important; }
I also want to remove the search from the navigation bar but I cannot figure out how to.
That CSS you’ve posted isn’t complete, but also looks to be an attempt for lower case, not upper.
You could look to add this to the bottom of your stylesheet:
/* attempt to make all text uppercase */
body {
text-transform: uppercase;
}
Now you might see some members pushing you to add an !important at the end but that’s a last resort kind of thing. See if the above helps before going the nuclear option.
For future posts, consider posting a link to your shop as design related questions are hard to give much insights into when we can’t see it.