perhaps
.bbp-breadcrumb p a {}
as well as
.bbp-breadcrumb-home {}
and
.bbp-breadcrumb-current {}
Peter thankyou but I tried like this and I just did again with yours now but didn’t change anything
I did this one wich worked fine:
.bbp-breadcrumb {
color: #fff;
}
Code above changed the color to white but codes below didnt change anything.
.bbp-breadcrumb p a {color: #fff;}
.bbp-breadcrumb-home {color: #fff;}
.bbp-breadcrumb-current {color: #fff;}
I have a black background of my wordpress site and site color is white for blog but for bbpress I changed only the header and footer background colors and used the code below
#bbpress-forums a{
color: #000;
}
#bbpress-forums {
color: #000;
}
So I did this because bbp-topic has white background and in this case the links became #000 as site background but the breadcrumbs are on the top where the background is black too and I need to change the breadcrumb link color to white …
Thats OK I found the solution..
Changed the #bbpress-forums a with the code below
#bbpress-forums .bbp-body a{
color: #000;
}
#bbpress-forums .bbp-body {
color: #000;
}
It worked fine..