How can I change the color of product prices to green?

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

Hallo @nonastore

You can add code by following these steps to change collection and product pages background color:

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid theme file

  3. Paste the below code before

p.price.productPrice { color: green !important; }

If you require any further information, feel free to contact me.

Best regards,

1 Like

@nonastore ,

ins#product-price {
    color: #168018 !important;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->style.min.scss.liquid

1 Like

put below css into style.min.css file

.price ins {
    color: green !important;
}

1 Like

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

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >style.min.css and paste this at the bottom of the file:
.product .price.productPrice {
color: green;
}

1 Like