MyBB Community Forums

Full Version: Theme change.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. I need to fix the following problem:
[Image: 34jds2q.png]
I need to make that text black so it's less hard to read.
Where would I do this in which CSS file?
Thanks!
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Add this to the bottom:

.messageEditor .toolbar_dropdown 
{
	color: #000 !important;
}

.editor_dropdown_menu
{
	color: #000 !important;
}
Thanks so much! It worked!