Hi! My product prices are on this weird position on mobile. I want the promotional price to be above the first price. How can I fix it?
1 Like
Hi @Avvoyer
check thiso ne.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 520px){
.price.price--on-sale .price__sale {
flex-direction:column-reverse;
}
}
And Save.
Result: