Moving price of product to the left (collecpage)?

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

  1. Go to ā€˜Online Store’ → Themes

  2. From your active theme → click on the 3 dots (…) → Edit Code

  3. Inside the assets folder , locate the file ā€˜component-price.css’

  4. At the end of the file paste this code

.price-item.price-item--sale{
   display: block;
}
1 Like

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;
}
1 Like