I would like to move the new price (red) under the old one, is this possible?
Thank you!
URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/collections/rappid-test
Im using the Trade theme.
I would like to move the new price (red) under the old one, is this possible?
Thank you!
URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/collections/rappid-test
Im using the Trade theme.
Try this
Go to āOnline Storeā ā Themes
From your active theme ā click on the 3 dots (ā¦) ā Edit Code
Inside the assets folder , locate the file ācomponent-price.cssā
At the end of the file paste this code
.price-item.price-item--sale{
display: block;
}
Thank you, it worked on my āhome pageā but not in the collection page, can you help me there?
Replace the code I gave you with this one
.price-item.price-item--sale.price-item--last{
display: block !important;
}