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

#303852

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