Re: Force Product Titles to be Uppercase on Collection Pages

Solved

Force Product Titles to be Uppercase on Collection Pages

rsjmiller
Excursionist
14 3 1

Does anyone out there know how to force all of my product titles - on my collection pages - to be uppercase with CSS? 

 

I'm using the Flex Fresh theme. The site is 08left.com 

 

Thanks! 

 

Ryan 

Accepted Solution (1)

JustinTharpe
Shopify Partner
142 5 17

This is an accepted solution.

Try adding this to your CSS.

 

a.product-thumbnail__title {
    text-transform: uppercase;
}
Please Like and Accept Solution if Useful.
The two picks of this month: Shipping Address Editor and Product Customizer
Shopify Community Helper

View solution in original post

Replies 2 (2)

JustinTharpe
Shopify Partner
142 5 17

This is an accepted solution.

Try adding this to your CSS.

 

a.product-thumbnail__title {
    text-transform: uppercase;
}
Please Like and Accept Solution if Useful.
The two picks of this month: Shipping Address Editor and Product Customizer
Shopify Community Helper
rsjmiller
Excursionist
14 3 1

Thanks so much. Added to the styles.css (for anyone in the future) and worked great. Seriously looked everywhere for this and couldn't find it so really appreciate it.