Hi
I've found and added custom CSS to my 7.1 site in order to move the SOLD OUT badge on top of the product on the shop page, however, when i open the product its replicating the design and placing the sold out badge in a strange position. Without being able to edit the HTML anyone know what i can do so that i can change the position of the badge within the product page to somewhere .
Current shop page with sold out badge where i want it:
Current badge inside the product page NOT where i want it:
How, if i keep the badge within the product page it would be better for it to be positioned. Or im happy for it show in a different way, any suggestions welcome!
Here is my current code:
.product-mark.sold-out {
background: #C98A36 !important;
color: #EFEADA !important;
font-family: 5TH AVENUE REG;
letter-spacing: 2px;
font-weight: 400;
position: absolute;
top: 10px;
right: 10px;
display: inline-block;
padding: 15px;
border-radius: 50%;
width: 55px;
height: 55px;
justify-content: center;
align-items: center;
text-align: center;
display: flex;
}
Thanks you!!