All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I'm using the Spotlight theme and would like to customize the sold out badge to just be a small red dot like the image below.
Thanks!
Solved! Go to the solution
This is an accepted solution.
Hi @sggallery
I'm Dan from Ryviu: Product Reviews & QA.
Please add this code below to your theme.liquid file, after <head> in Online Store > Themes > Edit code
<style>
.card:has(.price--sold-out) .card__inner .card__badge {
width: 16px;
height: 16px;
border-radius: 50%;
overflow: hidden;
}
.card:has(.price--sold-out) .card__inner .card__badge .badge {
font-size: 0;
color: transparent;
background: #f96b60;
width: 16px;
height: 16px;
display: block;
box-shadow: unset;
border: unset;
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- 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.
- Enjoy 1 month of Shopify for $1. Sign up now.
This is an accepted solution.
Hi @sggallery
I'm Dan from Ryviu: Product Reviews & QA.
Please add this code below to your theme.liquid file, after <head> in Online Store > Themes > Edit code
<style>
.card:has(.price--sold-out) .card__inner .card__badge {
width: 16px;
height: 16px;
border-radius: 50%;
overflow: hidden;
}
.card:has(.price--sold-out) .card__inner .card__badge .badge {
font-size: 0;
color: transparent;
background: #f96b60;
width: 16px;
height: 16px;
display: block;
box-shadow: unset;
border: unset;
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- 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.
- Enjoy 1 month of Shopify for $1. Sign up now.
Thanks so much - worked perfectly!