You could add the following to your stylesheet:
#bbpress-forums ul,
#bbpress-forums li a{
color: #555;
}
Which one? Where is the stylesheet?
I added:
bbpress-forums ul,
bbpress-forums li a{
color: #555;
}
to the end of files:
bbpress.css
and
bbpress-rtl.css
I can see black text on a white background now.
I found he solution for the white text in visual editor problem when using BBpress.
Go to your ftp and open public-html/wp-includes/css/editor.min.css ( I found it viewing my site’s source code)
You will see a whole bunch of code making it almost impossible to find the right part to change.
Call it a lucky guess but when i searched the word ‘white’ i only found 1 code:
-wp-editor-area{color:white}
I changed it into black and this solved the white text problem!
so just search for wp-editor-area{color:white} and change it into:
-wp-editor-area{color:black}