Hi @rdyup
To change the style as you want, you just need to change the CSS for your site. You can do it in the following way:
- Go to Online Store > Theme > Edit code
- Then go to the file component-price.css and find the code below:
.price--on-sale .price__sale {
display: initial;
flex-direction: row;
flex-wrap: wrap;
}
- Then replace them with the code below and save:
.price--on-sale .price__sale {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
- We tried and it worked:
I hope that it will work for your site as well.
