Hey, is it possible to change the default shape of the discount tag?
I’d like it to be circular.
Hello,
You can use this CSS to do that
.woocommerce .product span.onsale span.saled {
border-radius: 50%;
padding: 7px;
}
.woocommerce .product span.onsale span.saled:after {
display: none;
}
1 Like
Wow thank you! Just what I needed.
1 Like