Hello, I wonder if there is a way to change the product names / titles to capital case instead of UPPER case on the main page / collection view?
Thank you
Hello, I wonder if there is a way to change the product names / titles to capital case instead of UPPER case on the main page / collection view?
Thank you
Hi @MonikaBo .
I’m Richard Nguyen from PageFly- Free Landing Page Builder
You can go to Online store => themes => actions => edit code and add this code on file theme.css
.product__grid__title{
text-transform: inherit;
}
Hope this answer helps.
Best regards,
Richard | PageFly
Hi @MonikaBo
You can try this code
.product__grid__title{
text-transform: capitalize;
}
Thank you!
Actually the below worked instead !!
.product__grid__title{
text-transform: lowercase;
text-transform: capitalize;
}