Moving "Sold Out" button to the top left - Dawn Theme

Hi, I am hoping to move the sold out button to the top left corner instead of the bottom left corner. I have attached a picture.

Store URL is: https://gladscollectibles.ca

Thanks in advance!

Hi @mercedesyeast

Please try following those steps:

  1. Go to Online Store > Themes > Edit code > Assets > Open component-card.css
  2. Find .card__badge > Replace this section
.card__badge {  
bottom: 1rem;  
display: flex; 
flex-wrap: wrap; 
left: 1rem; 
position: absolute; 
}

with this one:

.card__badge { 
display: flex; 
flex-wrap: wrap; 
left: 1rem; 
position: absolute; 
top: 0.3rem; 
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!

1 Like