MyBB Community Forums

Full Version: Video post font color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://cuckoosnest.x10.mx/forumdisplay.php?fid=2

How do I change the text color in the post video box ?

[Image: new_th10.jpg]

See where the arrows are pointing Huh
Open jscripts/editor_themes/stylesheet.css with any text editor.
Add color: #000; (or any other) to:
.messageEditor .editor_dropdown_menu {
	margin: 0;
	padding: 0;
	margin-top: -3px;
	padding-bottom: 1px;
	top: 24px;
	left: 0;
	border: 1px solid #5296f7;
	position: absolute;
	width: 160px;
	background: #fff;
	z-index: 10000;
	max-height: 200px;
	overflow: auto;
	-moz-border-radius: 2px;
}
(2013-06-26, 12:01 PM)Destroy666 Wrote: [ -> ]Open jscripts/editor_themes/stylesheet.css with any text editor.
Add color: #000; (or any other) to:
.messageEditor .editor_dropdown_menu {
	margin: 0;
	padding: 0;
	margin-top: -3px;
	padding-bottom: 1px;
	top: 24px;
	left: 0;
	border: 1px solid #5296f7;
	position: absolute;
	width: 160px;
	background: #fff;
	z-index: 10000;
	max-height: 200px;
	overflow: auto;
	-moz-border-radius: 2px;
}

THX worked like a charm Angel