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
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
Hello @marvinq ![]()
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!