theme: turbo portland
site: ssensials.com > scroll down to “trending now”
I want to change the color of the SALE price on the homepage to GREEN. currently, it is black, and the original price is red and crossed out. I want the sale price (black/left side) to be green.
there is no option for me to change that color only the crossed out color changes.
Hey @marvinq
try this code :
.current_price span.money {
color: #13b613!important;
}
Hi @marvinq
Please go to your Online store > Theme > Edit code > open style.css or style.css.liquid file, add this code at the bottom of file and save it
.thumbnail-hover-enabled--false .current_price span.money { color: ##13b613 !important; }
Hey @marvinq Please follow these instruction
Step 1: Open admin pannel → go to Online store–>Click on themes
Step 2: Here you can see two options customize and three dots(…)
Step 3: click on three dots on perticular theme , when you click on there dots you can see these options
Step 4: click on edit code
Step 5: Search style.css file and scroll down
Step 6: Paste this code at last , and click on save after that you can see your changes
.current_price span.money {
color: #13b613!important;
}