Changing the colour of a product price on my website

please please please help i cannot change the colour of the products price. its pale pink for some obscure reason and almost invisible. i have tried theme settings ect but it says no settings available for this section. its driving me crazy !!! thanks debz

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Hello @Debz68
can you share store URL?

hattieandhope22.myshopify.com

Please paste this code in your css file.

Go to Online store > Themes > Customize > select that section and add this code to Custom CSS

.price.price--large.price--show-badge {
    color: #FFC0CB !important;
}

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

It’s still pink :disappointed_face:

what color you want to display, can you give me a code?

or color name

You can add code by following these steps

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

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.price .price-item { color: #000 !important; }

Just black please thanks so much

Hello @Debz68 ,

Please add this code in your theme.liquid file for changing the price color to black.

.price.price--large.price--show-badge { color: #2e2b2c !important; }

Output → https://prnt.sc/ByFGVLRCNXGg

I hope this helps.

Please let me know if you have any query.

Thank you.

1 Like

Hey @Debz68 ,

Please try this and let me know :blush:

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

Still pink

Thanks at last it’s done 1 :blush:

.price.price--large.price--show-badge {
    color: #000 !important;
}

Please paste this code in your css file.

Go to Online store > Themes > Customize > select that section and add this code to Custom CSS and remove the previous code that i asked you to paste ealier.

If I managed to help you then, don’t forget to Like it and Mark it as Solution!