My sale badge is not centred with price (dawn theme)

Solved

My sale badge is not centred with price (dawn theme)

sunny96x
Explorer
52 0 19

As seen in the screenshot below, the sales badge is aligned to the top, how can i make it aligned to the middle so it sits perfectly in line with the price?

 

Screenshot 2024-09-28 002947.png

website: https://shopstellory.com/products/sticky-inserts

Accepted Solution (1)
BSSCommerce-B2B
Shopify Partner
1972 564 568

This is an accepted solution.

@sunny96x, Change the previous code like this

<style>
.product .price .badge, .product .price__container {
   margin-bottom: 0!important
}
.price.price--large.price--on-sale.price--show-badge {
   display: flex;
   align-items: center
}
</style>

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 5 (5)

BSSCommerce-B2B
Shopify Partner
1972 564 568

@sunny96x ,

Step 1: Go to Admin -> Online store -> Theme > Edit code

Step 2: Search for the file theme.liquid

Step 3: Add this code before </body> tag

<style>
.product .price .badge, .product .price__container {
   margin-bottom: 0!important
}
</style>

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

BSSCommerce-B2B
Shopify Partner
1972 564 568

Here is the result for you 

BSSCommerceB2B_0-1727455276073.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

sunny96x
Explorer
52 0 19

Hi, it's a little bit better now but still not perfect - I should have mentioned before that the price is a bigger font size than the SAVE 30% text.

 

sunny96x_0-1727455498692.png

 

BSSCommerce-B2B
Shopify Partner
1972 564 568

This is an accepted solution.

@sunny96x, Change the previous code like this

<style>
.product .price .badge, .product .price__container {
   margin-bottom: 0!important
}
.price.price--large.price--on-sale.price--show-badge {
   display: flex;
   align-items: center
}
</style>

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

sunny96x
Explorer
52 0 19

Thank you so much brother!