Change sale badge position

  1. .card__badge .badge{
    border-radius: 0;
    font-size: 12px;
    background-color: white;
    font-weight: medium;
    color: red;
    border: none;
    }

    how can i add at the top left

1 Like

Hi @NOT1 , Replace old code to new code:

.card__badge .badge {
position: absolute;
top: 10px;
left: 10px;
border-radius: 0;
font-size: 12px;
background-color: white;
font-weight: medium;
color: red;
border: none;
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes: