Hi,
try this css
#content a {
color: #000 !important;
}
Hey there prldoyle,
Hope you’re well today 🙂
Please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://ww.wp.xz.cn/plugins/simple-custom-css
#primary .woocommerce-breadcrumb a {
color: #cc6;
}
#primary a.button.add_to_cart_button.product_type_simple {
color: #cc6;
}
#primary span.amount {
color: #77a464;
}
Replace color hex values to display another color, first part will change bradcrumb links it the top, second one will change color of the add to cart links and the third will change price color.
You can use sites similar to this one to get hex value for the color of your choice: http://www.color-hex.com/
Hope this helps 🙂
Cheers,
Bojan
Fantastic, Both solutions work, But i went with Codemeovement as this was just simpler.
Thanks both for your help.
Cheers
Hey prldoyle,
Glad I could help 🙂
Just want to let you know that the difference in code is that the code @codemovement provided will change all the links color in the content area in your site, while mine targets those three specific links.
Adding this just in case you understand the difference and in case you need to customize something later.
Cheers,
Bojan