Tagged: related products, woocommerce
Hello! I am looking to change the font color of the related products section on WooCommerce product pages. Right now it is the same color as the background. Example: http://test.dangelointernational.com/product/5-84-allis-svedala-hydrocone-crushers/
The closest I could get was this CSS below which did change the related products text color, but it also changed the text of products on the category pages, which I don’t want.
div.inner_product_header h3 {color: white;}
Any help would be greatly appreciated.
Thank you.
Hey k593,
Try adding this code in Quick CSS:
#top #wrap_all .related.products h3 {
color: #fff !important;
}
Let us know if it helps :)
Best regards,
Nikko
Beautiful. It worked. Thank you!