Changing Link Color for Product Description/Review Tabs

On the Product Detail pages there are tabs for ‘Description’ and ‘Reviews’, I am trying to change the link active and hover color for these tabs. I have been attempting to do this with custom CSS for hours but I can’t find the right way to do this.

Thank you for your help!

Hi @mikedcmdva,

I hope you are well today.

To change the link active and hover color for these tabs try adding the following CSS code in the Custom CSS Theme options displayed on the below path in your admin area.

Admin Area -> Appearance -> Theme Options -> Other Tab -> Custom CSS

.woocommerce-tabs .tabs li:hover, 
.woocommerce-tabs .tabs li:hover a {
	color: #0074a2 !important;
}
.woocommerce-tabs .tabs li {
	background: #a00 !important;
}
.woocommerce-tabs .tabs li.active {
	background: none !important;
}

Change the color value in the above code to whatever you want to use.

If the above code doesn’t work for you then please share me the page link from your site where they are displaying it so that i can troubleshoot it.

Best Regards,
Vinod Dalvi