Remove outline from brand
-
Hello,
how can I remove the outline border when I add brand name but with Swatch option ON without picture?
It makes it bolder but it has rectangle outside of the text when you see it in Filter options widget, is there a way to remove it?
-
This topic was modified 1 year, 1 month ago by
tdnd.
Hi tntd,
Thanks for reaching to us.
Please add the following Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
div.product-design-default .entry-summary:not(.col-lg-4) .wd-product-brands a {
box-shadow: none;
}
Regards,
Hello,
thank you for the response. I meant the border in Shop filters when Swatch is set to ON, if I am not mistaken is about this code
.wd-text-style-4 .wd-swatch.wd-text {
border: 1px solid var(–wd-swatch-brd-color);
}
But I do not know how is the correct way to put it in CSS.
.wd-text-style-4 .wd-swatch.wd-text {
border: 0px solid var(–wd-swatch-brd-color);
}
Or it should be different
-
This reply was modified 1 year, 1 month ago by
tdnd.
Hi tntd,
Please use below code:
[class*="wd-swatches"].wd-text-style-4 span.wd-swatch.wd-text {
border: none;
}
Regards,