Pipeline theme - product titles - change to Capitalisation

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

https://homeatfirstsight.co.uk/

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

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> theme.css ->paste the below code at the bottom of the file.
.product__grid__title{
text-transform: capitalize;
}

Thank you!

Actually the below worked instead !!

.product__grid__title{
text-transform: lowercase;
text-transform: capitalize;
}