Hey guys!
I need to change sale price tag background and text colour on my collection page. I managed to do it on my product page but this is different.
In the theme settings it is not possible cause it changes colour of all the other buttons within colour scheme and I cannot find the element code, so I couldnt figure out the right coding.
1 Like
Hi @Dreedy ,
Would you mind to share your store URL website? with password if its protected. And what color youll like to add? Thanks!
1 Like
Thank you for the information. Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
.card__badge.bottom.left span {
background: #302c3c;
color: #ffff
}
Result:
This may also change the color of badge in the product page.
I hope it help.
2 Likes
Absolutely amazing, thank you so much!
1 Like

