Finding The Color Setting For Breadcrumbs

In responsive 4.6.3 I am trying to match up the font color settings to the items on the live page. I cannot seem to find a setting for-Breadcrumbs, My Account in the header , and the Items In the cart. I have a grey background using black fonts but I cant connect these items with a category.

Thank you

try adding this in your css editor in Amdin>themes>theme editor

change ethe colour to what you want

.ty-breadcrumbs__a {
    display: inline-block;
    color: #8ca3ba;
}

thanks, I'll try.

Do I have to convert to CSS or just add it to custom css?

Do I have to convert to CSS or just add it to custom css?

You can add this code to the CSS section of the Theme editor

Thanks

I must be doing something wrong. See attached. FOr some reason the "paint" rendition shows missing letters but they are there.

I entered

.ty-breadcrumbs_a {
display: inline-block;
color: #000000;
}
I saved it but it doesn't work. At the top of the section it has a way to convert to CSS. Am I supposed to do that before entering the code?
[attachment=12941:css for black breadcrumbs.jpg]

css for black breadcrumbs.jpg

I must be doing something wrong. See attached. FOr some reason the "paint" rendition shows missing letters but they are there.

I entered

.ty-breadcrumbs_a {
display: inline-block;
color: #000000;
}
I saved it but it doesn't work. At the top of the section it has a way to convert to CSS. Am I supposed to do that before entering the code?

NO

Don't do that,!!!!. I can't quite see from the image but I think you have a typo, you are missing : just after color. if not then have you forgotten to clear the cache.?

I must be doing something wrong. See attached. FOr some reason the "paint" rendition shows missing letters but they are there.

I entered

.ty-breadcrumbs_a {
display: inline-block;
color: #000000;
}
I saved it but it doesn't work. At the top of the section it has a way to convert to CSS. Am I supposed to do that before entering the code?

I think I can JUST about see the colon when I enlarge your image so, as takestock says, try to clear your cache and your browser cache.

I cleared the cache in both browser and website. Below is a copy/paste of what I entered.

.ty-breadcrumbs_a {
display: inline-block;
color: #000000;
}
On the entry the .ty is underlined in red.(like here) Is this the correct label or should it be something else?

I found-in Templates/responsive/css/styles.less

Line 3221-3224 The following:

.ty-breadcrumbs__a {
display: inline-block;
color: darken(@base, 25%);
can i just change the color value to #000000?

I found-in Templates/responsive/css/styles.less

Line 3221-3224 The following:

.ty-breadcrumbs__a {
display: inline-block;
color: darken(@base, 25%);
can i just change the color value to #000000?

Yes, you can, but this way is not good. It is better to use CSS section in the Theme editor. Try

.ty-breadcrumbs__a { 
    color: #000000 !important;
}

I tried-

.ty-breadcrumbs_a {
color: #000000 !important;
}
It changed some Items. The "cart content" block and the top "my account title" but not the breadcrumbs.
Am I supposed to be able to scroll thru the CSS settings in the CSS box in the Theme editor?

Paste your whole css here from the theme editor and Ill try it on mine

https://prnt.sc/i0spnz

the only thing on my screen for Custom CSS is-

.ty-breadcrumbs_a {
color: #000000 !important;
}
This changed some minor things but not the Breadcrumbs.
Should I be able to scroll thru the CSS on this screen?
Thanks

Please check my post. There should be double underscore instead of single one