Thank you so much for your quick reply!! this worked right away
Topic summary
Goal: change the product card title capitalization in a Shopify (Veena) theme from first-letter capitalization to a different style.
Context: The requester shared a preview store URL on request. They initially considered using a Liquid filter (product.title | capitalize) but sought where to implement it.
Proposed solutions (CSS-focused):
- Add a Custom CSS rule via Theme > Customize > Theme settings > Custom CSS to target the product card title link and apply text-transform: uppercase. Step-by-step instructions and screenshots were provided.
- Alternative placements suggested: insert CSS into theme.liquid (above ) or before via Edit code. These also aim to control text casing globally.
Outcome: The requester confirmed that one of the provided CSS methods worked immediately. Screenshots illustrated both the setup and final appearance.
Status: Resolved. No remaining open questions. Technical notes: using CSS text-transform is the chosen approach; Liquid filters were not required for this UI change.