Hey! I was able to change the section color on the product recommendations on a product page but can’t get the product name & price to change to white like the headline, any suggestions?
.h4.grid-view-item__title.product-card__title {
color: #fff;
}
span.price-item.price-item--regular {
color: #fff;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Thank you!
Actually, when I did that & went back to the home page it had changed the collection title & prices there to white too and I just need it on the product recommendations as it’s the only one with the blue background. Any ways to target that directly?
#template-product .h4.grid-view-item__title.product-card__title {
color: #fff;
}
#template-product span.price-item.price-item--regular {
color: #fff;
}
update this code with above code
Unfortunately that didn’t do it, they still aren’t changing