How to remove or move the sales icon?
-
The sales icon have been cover my message, may I know how to move it from left to right corner or how to remove it even under sales product?
Attachments:
You must be
logged in to view attached files.
Hi evanlee01141991,
Thanks for reaching to us.
Please add the following code in Theme Settings > Custom CSS > Global Custom CSS
.wd-product.sale .product-labels{
right: 5px;
left: auto;
}
Regards,
How about removing it? Can I also have the removed coding just in case I need it in the future?
Hi evanlee01141991,
Thanks for reaching to us.
Please remove previous Custom CSS add the following code in Theme Settings > Custom CSS > Global Custom CSS
/* Move labels to the right */
.wd-product.sale .product-labels{
right: 5px;
left: auto;
}
/* Remove labels */
.wd-product.sale .product-labels{
display: none;
}
Regards,