force all product titles into uppercase on product page

Hello, I have the Dawn theme, how do I force all product title to show in uppercase on the product pages?

1 Like

@ultimateliving Can you please share your page link?

@ultimateliving

Please add the following CSS code to your asstes/base.css bottom of the file.

h1.product__title {
    text-transform: uppercase !important;
}

Thanks!

Hi @ultimateliving ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.product__title {
    text-transform: uppercase !important;
}