MyBB Community Forums

Full Version: Change text color when posting thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

How do I change the text color like this image shows:

[Image: textcolor.png]
search for WYSIWYG text editors on modifications section & install one !!

search results :
MyBB WYSIWYG Editor
Advanced WYSIWYG Editor
If the problem is just on editor, the easiest way may be editing this file:
default -> stylesheet.css

Find:
.messageEditor .toolbar_container {
	height: 28px;
	padding: 2px;
}

Replace:
.messageEditor .toolbar_container {
	height: 28px;
	padding: 2px;
	color:#000000;
}
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Add this at the bottom:

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

.editor_dropdown_menu
{
	color: #000 !important;
}

3. Refresh the page with Shift+F5.

Source: http://community.mybb.com/thread-95700.html