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, 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!
Please try following those steps:
.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!