How can i change the sold out sign to orange instead of red

Topic summary

A user wants to change the color of the “sold out” badge from red to orange on their Shopify store using the Refresh theme.

Two solutions were provided:

  1. CSS file modification approach:

    • Navigate to Online Store → Themes → Edit Code
    • Open the base.css file
    • Search for .card__badge .badge
    • Modify the background color property to the desired orange shade
    • Save changes and refresh the store
  2. Theme.liquid injection approach:

    • Go to Online Store → Theme → Edit code
    • Open theme.liquid file
    • Add custom CSS code before the </body> tag with the specific orange color value (#dda53c)

Both solutions target the badge styling through CSS customization. Screenshots were shared showing the implementation steps and expected results. The discussion appears resolved with actionable solutions provided.

Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

How do I change the sold out to orange

Theme: Refresh

https://huggercomfort.com/products/hot-hugger-wearable-hot-water-bottle

Hi @Finn4 ,

Please follow the following steps

  1. Go to your online store and select Themes from left panel

  2. Press 3 dots menu in center (on the left of Customize button) and then Edit Code

  3. Open the file base.css (you can search for it)

  4. Search for the following: “.card__badge .badge” (without quotes)

  5. In the properties for this selector you will see background color, change it to desired color

  6. Save the changes, and refresh your store to see them in effect

After making that change, you will get desired result like this -

Thanks

Yash Garg

Hello @Finn4

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.card__badge.top.left span { background: #dd5a3c !important; }