Digital experiences for all disciplines
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
September 2, 2016 at 8:23 am
#290297
Hi
Instead of using
.single-product span.onsale,
.archive span.onsale {
display: none;
}
Just use
span.onsale {
display: none;
}
– Kyle