I’d like to make the compare at size larger, and I’d like to make the sale price smaller and the color red.
Sense Theme
I’d like to make the compare at size larger, and I’d like to make the sale price smaller and the color red.
Sense Theme
Hi @alexschar
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly
@alexschar , do this to fix it in 20 seconds:
.product .price__sale .price-item[class*='last'] {
font-size: 14px;
color: #c0392b;
}
.product .price-item[class*='regular'] {
font-size: 16px;
}
@media (max-width: 749px){
.product .price__sale .price-item[class*='last'] {
font-size: 12px !important;
}
.product .price-item[class*='regular'] {
font-size: 17px !important;
}
}
I have added some arbitrary values, but you can customize them as you wish:
14px = big price (desktop)
16px = small price (desktop)
12px = big price (mobile)
17px = small price (mobile)
If it helps you please click on the “like” button and mark this answer as a solution!
Thank you.
Kind regards,
Diego