Product Prices on One Line

Product Prices on One Line

ChrisW3
Trailblazer
284 1 20

Currently our product pricing on product detail page is too spread out. I want the strikethrough price, current price and sale badge all on one line.

 

https://www.physioworldshop.co.uk/products/collections-electric-couches-products-addax-practice-mana...

 

This is what we currently have:

product-page-current.png

 

 

This is what I would like

 

product-page-required.png

Replies 4 (4)

CafeDelMar
Shopify Partner
163 36 46

Hey @ChrisW3.

 

Here's how to achieve that:
1. Navigate to Sales Channels → Online Store → "Customize" button → Theme settings (Gear icon on the left sidebar) → Custom CSS
2. Add the following code:

@media screen and (min-width: 481px) {
  li:has(.inc_vat_text) span {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: -30px !important;
  }
}

3. Save (right top corner)
4. Hard refresh the storefront

 

If done correctly, the result should be like this:

Screenshot_2.png

 

The ruleset is only applied for 480+ px (so no mobile phones) as the single line gets too wide for small screens. Feel free to adjust the values as you see fit.

➡➡   Easy Embed Code   ⬅⬅ add CSS/JS/Liquid codes to any page of your store



Speed Booster App - Improve your store speed in 3 clicks
- Was your question answered? Mark it as an Accepted Solution

Dan-From-Ryviu
Shopify Partner
11626 2277 2459

Please add this code below to Custom CSS in Sales channels > Online Store > Themes > Customize > Theme settings 

.product-meta span {
    display: flex !important;
    align-items: center;
    margin-right: 8px;
}

Screenshot 2025-04-02 at 09.17.38.png

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

ChrisW3
Trailblazer
284 1 20

Hi Dan, it looks better, thank you. How would I get the lower price first, then the sale price after, so it is more like this:

ChrisW3_0-1743579104545.jpeg

 

 

Dan-From-Ryviu
Shopify Partner
11626 2277 2459

Please update the code 

.product-meta span {
    display: flex !important;
    align-items: center;
    margin-right: 8px;
    order: 2;
}
.product-meta span.inc_vat_text {
    order: 1 !important;
}
.product-meta span.percentage_text {
    order: 3 !important;;
}

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.