(Split Theme) Product hover reduced price

Hello,

I would like to change the reduced price from grey in another color (see the screenshot). Is this possible?

Thank you!

Felix

1 Like

@flexsabo

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

1 Like

Thank you.

This is the shop URL: https://camino71.com/collections/business-shoes

1 Like

@flexsabo

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/css_main.scss.css->paste below code at the bottom of the file.
.site-box.box__collection .product-item .caption .price .overflowed {
    font-size: 14px;
}
1 Like

Thanks for your help, with color instead of font-size it is working. The problem is just that the normal price is now red too. I would like to have this still in gray is it possible?

Thanks

Felix

@flexsabo

yes, please add this code

.site-box.box__collection .product-item .caption .price del {
    color: gray;
}
1 Like