Thank for your feedback and support.
Hi
I am in theme motion and I wanted Discounted prices in RED and original price in BLACK
I tried the following code but ALL are red:
.product__price {
color: #D61919;
}
.grid-product__price–original {
color: #000000;
}
Can someone help please …? thank you very much and MERRY XMAS
Welcome to the Shopify community!
and Thanks for your question.
Please share your site URL,
So I will check and provide a solution here.
Hi @KetanKumar
Thank you. Link is https://romantiico.com/
Thanks can you please this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.product__price {
color: #000;
}
.product__price.on-sale {
color: #D61919;
}
GREAT! Thank you it worked finally! Have a great day! And Merry Xmas and Happy New year!
Fred
Thanks for your feedback and support.
Hi Ketan,
I would like to remove the quote ‘Sale’ which is located next to the sale price on my store but I could not find where I could fix this in the code. Would you have a solution to this problem?
My URL is: https://sublimertm.com/en
I am thanking you in advance
Niels Molenaar
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.price-item__label {
display: none;
}
Great, it worked! Thankyou a lot for your help
Do you also know how to remove the ‘Tax included’ note under the price?
Thanks for it
yes, please add this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.product__policies {display: none;}