Forum Replies Created
- 
		
			
In reply to: white text on white backgroundI made a thread for the solution here In reply to: How to change colors in my bbpress forum?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}In reply to: white text on white backgroundI 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}