The font is no longer legible due to poor contrast
-
Hello,
Now that the demo color has been changed from yellow to dark purple, the font is no longer legible due to poor contrast.
Where can I set the font color for this navigation?
Thank you.
Attachments:
You must be
logged in to view attached files.
Hello,
Please try using the below Custom CSS code and paste it to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section. Change the color as per your requirements.
.single-product .woocommerce-breadcrumb,
.single-product .woocommerce-breadcrumb a {
color: #ff0000; /* Change to your preferred color */
}
/* Change breadcrumb link color on hover */
.single-product .woocommerce-breadcrumb a:hover {
color: #000000; /* Change to your preferred hover color */
}
.single-product .wd-breadcrumbs > :is(span, a):last-child {
color: #ff0000; /* Change to your preferred color */
}
Best Regards