A user wants to control capitalization in product titles on their Shopify store. Currently, titles display correctly on collection pages but appear fully capitalized on individual product pages.
Two CSS solutions were provided:
CodingFifty’s approach: Add CSS to base.css/theme.css/style.css/main.css/custom.css file:
Target .product-block__title with text-transform: uppercase !important;
Moeed’s approach: Add CSS via theme.liquid file:
Insert <style> tag with .product__title { text-transform: none !important; } above the </body> tag
This removes automatic capitalization, allowing manual control
Status: The issue remains unresolved as the original poster hasn’t confirmed which solution worked. The two suggestions offer different approaches (enforcing uppercase vs. removing automatic transformation), so clarification on the desired outcome may be needed.
Summarized with AI on November 1.
AI used: claude-sonnet-4-5-20250929.
I would like to be able to choose which words to capitalize and which to lowercase in my product title on the product page. On the collections page, they are correct. while on the product page the title is always capitalized. this is the link: https://vomeroitaly.com/
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.