New Landing How can we help? Atelier CSS to remove SALE tags from one page please Reply To: CSS to remove SALE tags from one page please

#290297
Kyle – SUPPORT
Moderator
Post count: 35880

Hi

Instead of using

.single-product span.onsale,
.archive span.onsale {
display: none;
}

Just use

span.onsale {
display: none;
}

– Kyle