Hi, I installed a plugin that ads an image overlay for out of stock products but it also added the overlay to the product titles. How can I remove it from the product titles and keep it only on the product image?
Hey bakbek,
Try adding this css code in Quick CSS:
.products .outofstock .inner_product_header_cell a:before {
background: transparent;
}
if that doesn’t work, then use this instead:
.products .outofstock .inner_product_header_cell a:before {
background: transparent !important;
}
Best regards,
Nikko
The first one worked. Thanks!
Hi bakbek,
Glad that we could help :)
Please ignore the 2nd code as it is just a fallback.
Best regards,
Nikko