Re: How To Make Shopify Sale Badge Smaller In Dawn Theme?

How To Make Shopify Sale Badge Smaller In Dawn Theme?

NKmill
New Member
9 0 0

How can I make shopify sale badge smaller in dawn theme?

 

Replies 11 (11)

Van_Nguyen_GSG
Shopify Partner
161 23 44

Hi @NKmill 

Try adding this to your "Theme settings" > "Custom css"

.badge.price__badge-sale {
  transform: scale(0.8); // where 0.8 = 80%
}
Helping Shopify merchants build stores that convert.
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- If you still need help, feel free to reach out to me at: van@glue.sg
Cheers!
NKmill
New Member
9 0 0

I can not save it. I am sending you an image. When i am pressing save green box this red box appeaars down in the center. As you can see I have pasted the code.Στιγμιότυπο οθόνης (766).png

NKmill
New Member
9 0 0

Thank you for the answer. I pasted the code. But when I press the save green box it appears me a red box down in the center that says : Online store editor session can't be published.

NKmill
New Member
9 0 0

Στιγμιότυπο οθόνης (766).png

Van_Nguyen_GSG
Shopify Partner
161 23 44

@NKmill, this occurs when its a reserved shopify class name. The work around is to add the following code at the bottom of the Layouts/theme.liquid file, just above the </body>

<style>
.badge.price__badge-sale {
  transform: scale(0.8); // where 0.8 = 80%
}
</style>



Helping Shopify merchants build stores that convert.
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- If you still need help, feel free to reach out to me at: van@glue.sg
Cheers!
NKmill
New Member
9 0 0

Thank you for the answer. I have saved the code but nothing happened. Whould you like to send you a message in order to give you access to help me with this?

 

NKmill
New Member
9 0 0

In order to see result I have made the scale to 0.95 but still nothing.

Van_Nguyen_GSG
Shopify Partner
161 23 44

@NKmillbeing more specific will likely do the trick.

<style>
.badge.price__badge-sale {
  transform: scale(0.8) !important;
}
</style>
Helping Shopify merchants build stores that convert.
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- If you still need help, feel free to reach out to me at: van@glue.sg
Cheers!
NKmill
New Member
9 0 0

I have pasted the code to theme liquid just above body but still nothing changed on the sale badge in the online store.Στιγμιότυπο οθόνης 2023-05-02 181038.png

NKmill
New Member
9 0 0

Do you know how to place it in the top right. I want the top:0 and right: 0. Beacause on shopify in mobile view the badge is in the middle.

tarek_guma
Excursionist
22 0 4

Use this on base.css, worked perfectly on Dawn 15.0.2.
Cám ơn Vân for this awesome trick!