Change color of original sales price on collection home page on Debutify theme

I want to change the color of the original sales price on the “featured collection” on the home page. currently, it is gray and I want to change it to a red color with the crossed out price being red as well

i am using debutify theme

ssensials.com

Hello @marvinq :waving_hand:

In Shopify Admin, you can go to Edit theme code, open file theme.scss and add this code at the bottom

.price-compare {
    color: #FF0000 !important;
}

The result

Hope that helps!

1 Like