How do i move the sold out and sales badge

Topic summary

A store owner wants to reposition product badges (like “sold out” or “sales”) so they appear on the right side of product images instead of the left.

Proposed Solution:

  • Navigate to: Online Store → Themes → Actions → Edit Code → base.css
  • Add CSS code at the end of the file targeting .collection.card__badge.top.left with an 88px left margin
  • The code includes a media query for screens with max-width of 550px

Current Status:
The discussion appears to be ongoing, with one solution provided but no confirmation yet whether it resolved the issue. The original poster included screenshots and store credentials for reference.

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

I want the badges on the products on the left to stay where they are for products on the left. I want the badge to show on the right. I circled/included an example of what I want below. My store is www.takeoverapparel.com and the password is takeover.

Hello @takeoverapparel
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.

@media only screen and (max-width: 550px) {
  .collection .card__badge.top.left {
    margin-left: 88px !important;
  }

Thanks