Change price to red and swap compare price and selling price so it shows selling price first

Hello guys,

Impulse theme- looking to change pricing with products to show selling price in red text (first) and then the compare price crossed out (second) so reversed order with selling price changed to red- below screenshot is how it currently is set.

Second screenshot is how I want it to be :slightly_smiling_face:

URL- blakehampton.com

thanks in advance :slightly_smiling_face:

Tommyboi_1-1740502658434.png

1 Like

Hi @Tommyboi

Try this one.

  1. From your Shopify admin dashboard, click on ā€œOnline Storeā€ and then ā€œThemesā€.
  2. Find the theme that you want to edit and click on ā€œActionsā€ and then ā€œEdit codeā€.
  3. 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:
.grid-product__price {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

span.grid-product__price--original {
    order: 2;
}

span.grid-product__price--savings {
    order: 3;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you, also want to changes selling price to red colour though please?

Unfortunately, if you’re using the Dawn theme, we can change the color of the selling price. However, the Impulse theme has different code structures.

thank you

Sorry for the previous question. The paid theme has many differences compared to the free theme.

Welcome! Would you mind hitting ā€˜like’ as well? Thanks!