Home › Forums › WoodMart support forum › How change "Discount", "Hot", "New" labels position from left to right › Reply To: How change "Discount", "Hot", "New" labels position from left to right
July 1, 2021 at 8:32 am
#303852
Aizaz Imtiaz Awan
Keymaster
Hello,
Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
.product-label.featured {
left: 0;
top: 15px;
bottom: 0;
right: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
pointer-events: none;
}
.product-label.featured {
position: absolute;
transform: translate(100%, -50%);
height: 26px;
}
Regards.
Xtemos Studios