I want to change the color of all prices on product page to green. how can i do that? my website is www.nonastore.com.br
Topic summary
A user seeks to change product price colors to green on their website (www.nonastore.com.br).
Multiple solutions provided:
- Add custom CSS code to the theme files
- Navigate to: Online Store β Theme β Edit code β Assets β style.min.css
- Insert CSS at the bottom of the file before closing tags
CSS code variations suggested:
p.price.productPrice { color: green !important; }ins#product-price { color: #168018 !important; }.price ins { color: green !important; }.product.price.productPrice { color: green; }
Key differences:
- Some target specific elements (ins, p tags) vs. general price classes
- Color values vary (βgreenβ keyword vs. hex code #168018)
- Some include
!importantflag for override priority
All respondents recommend editing the themeβs CSS file directly. Screenshots were shared showing implementation steps. The discussion remains open with no confirmation from the original poster on which solution worked.
Hallo @nonastore
You can add code by following these steps to change collection and product pages background color:
-
Go to Online Store β Theme β Edit code.
-
Open your theme.liquid theme file
-
Paste the below code before
If you require any further information, feel free to contact me.
Best regards,
ins#product-price {
color: #168018 !important;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->style.min.scss.liquid
Hi @nonastore
This is Victor from PageFly - Shopify Page Builder App, Iβd like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->style.min.css
ins#product-price {
color: green !important;
}
Hope you find my answer helpful!
Best regards,
Victor | PageFly


