How can I eliminate the out of stock button from my website?

Hi there,

How can I remove the out of stock button (black Ausverkauft) on my website? https://taneraskin.com/collections/produkte

Best,

Isa

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset-> base.css and paste this at the bottom of the file:
.card__badge.bottom.left {
    display: none;
}

1 Like

Hello @isabellemaria

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.card__badge.bottom.left {
 display: none;
}
1 Like