Change sale price colour to blue on theme focal

I want to change the sale price colour from red to blue on both product page and collection pages.

can someone please help :folded_hands:

3 Likes

Hi @Clearskinhouse

If you share your store URL and password with me, I will check and provide you with the solution.

Hello @Clearskinhouse
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.

Hi @Clearskinhouse ,
Can you kindly share your store link with us? We will check it and suggest you a solution if possible

Clearskinhouse.com.au

1 Like

Clearskinhouse.com.au

1 Like

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.price--highlight {
    color: blue !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.

Hi @Clearskinhouse ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:


Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Hi @Clearskinhouse

  • Go to Online Store → Theme → Edit code.
  • Find the file assets/theme.css and paste the code below at the bottom of the file.
.price--highlight {
color: blue !important;
}