This topic has 13 replies, 3 voices, and was last updated 9 years, 9 months ago ago by Eva Kemp
I want to change the color of the text (title and bread crumbs). I can change the title color (changing main font) but this will change to much of the rest on the pages.
Breadcrumb colors I cannot change?
How do I changes only the text color in the breadcrumb bar?
Hello,
Please provide us with a link to your site.
Thank you.
Regards,
Eva Kemp.
see private content
Hello,
Add this code in custom.css file to change color in breadcrumbs bar:
.page-heading .title {
color: black !important;
}
.page-heading.bc-type-5 .breadcrumbs, .page-heading.bc-type-6 .breadcrumbs, .page-heading.bc-type-5 .woocommerce-breadcrumb, .page-heading.bc-type-6 .woocommerce-breadcrumb {
color: black !important;
}
Thank you.
Regards,
Eva Kemp.
Hi Eva, it worked partially. The breadcrumbs link are still unchanged.
Is there a easy whey to figure out which class to set? Also if I want to change other colores in the future and since the theme only support adjusting some basic colores I think an easy way to find out which classes to change would help us (and you).
Thank you.
Hello,
Please add this code as well:
.bc-type-5 a {
color: black !important;
}
You can find what class to edit using Chrome console, open your site in Chrome browser and make right click with your mouse on the element you want to edit, from the appeared menu you need select “Inspect element” and you’ll see what classes are used for the elements.
Thank you.
Regards,
Eva Kemp.
Nearly all good but I the delimiters ” / ” and back arrow ” < ” is still giving me a hard time.. I can’t find which classes need to change. Hope you can tell me.
Hello,
Please try to use this code.
.bc-type-5 .delimeter{
color: black !important;
}
Regards,
Robert Hall.
works partially, only the “< ” still needs to be changed. (back-history class?)
Please add following code into custom.css file
.back-history:before{
color: black !important;
}
Regards,
Robert Hall.
Hello,
You need add this code as well:
.back-history:before {
color: #000 !important;
}
Thank you.
Regards,
Eva Kemp.
all good now. Thank you.
Hello,
You’re welcome.
Regards,
Eva Kemp.
The issue related to '‘Changing Color of text in title bar’' has been successfully resolved, and the topic is now closed for further responses