I want the text for product name on my store https://swawe.store/
to look like this in the image attached and the price also to be bold as the image attached
Topic summary
A store owner wants to modify the product name and price formatting on their Shopify store to match a specific design shown in an attached image.
Requested Changes:
- Product names in uppercase
- Bold pricing
- Adjusted font weight and letter spacing
Solutions Provided:
Two community members offered CSS code snippets to add to the theme files (base.css/main.css):
- Initial solution included uppercase text transformation and bold font weight for both product names and prices
- Follow-up adjustments addressed concerns about the price appearing too dark/bold
- Modified code reduced font weight from bold to 400 for a lighter appearance while maintaining uppercase formatting
Current Status:
The discussion includes working CSS solutions with visual examples. The store owner expressed concerns about darkness/boldness of pricing, prompting refinements to the font-weight values. Implementation requires editing theme CSS files through the Shopify admin panel.
Hi @attackon ,
May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
- Assets/base.css
- Add code below to end of file
.product-card-wrapper .card__heading {
text-transform: uppercase;
letter-spacing: 0;
}
.card-information .price > * {
font-weight: bold;
}
can fans weight be made a little less bold because it is too dark now
Hi,
What do you mean?
Hi @attackon ,
Please see the solution below:
-
In your Shopify admin, navigate to “Online Store” under Sales Channels. Click the three dots next to the theme you wish to edit, then select “Edit Code”.
-
Next you can find Main.css/theme.css/base.css/style.css(it will be based on your theme file).
Add this css code:
.card__content h3 {
text-transform: uppercase;
font-weight: 400;
}
.card-information {
font-weight: bold;
}
Result:
If you need further assistance, feel free to reach out!
I hope this helps! If it does, please like it and mark it as a solution!
Regards,
Sweans
it looks very dark the price section, can it be less dark or bold


