Hi
where I can change link color for this class?
pagespeed.web.dev gives warning because have low contrast
<div class="wd-product-cats woodmart-product-cats">
<a href="https://domain.com/product-category/supermercado/product/" rel="tag">Name of product</a></div>
css view in google browser
.product-grid-item .wd-product-cats, .product-grid-item .wd-product-brands-links {
font-size: 95%;
--wd-link-color: var(--color-gray-400);
--wd-link-color-hover: var(--color-gray-700);
}
I want change for something like
.product-grid-item .wd-product-cats, .product-grid-item .wd-product-brands-links {
font-size: 95%;
--wd-link-color: black;
--wd-link-color-hover: var(--color-gray-700);
}
I have try put this code in global custom css but is not working
-
This topic was modified 2 years ago by segjar.