MyBB Community Forums

Full Version: Editing the Post Message look?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, on my site when you post/edit threads, the content of the dropdown menus Font and Text Size are white and therefore invisible.
How would I go about changing it?

Screenshot:
[Image: 79084712.png]
Open mybb2/jscripts/editor_themes/default/stylesheet.css with a text editor, go to line 195 and you'll see this:

.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;
}

Change background: #fff; to the colour you want (#fff = white, #000 = black, for instance).
Do you also know how to change the text color that is in the menus before opening it?

And I'd like it rather to change the text color in the dropdown menu instead of the background.
I just had this problem and there is a simple solution.

In the same CSS Document (../jscripts/editor_themes/default/stylesheet.css)

ADD the color code for black text

color:#000;

after


.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;
}

so it looks like this:

.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;
    color:#000;
}

That will make the text black, and not change the background from white.

Hope it helps, sorry I didn't run into the problem sooner.
Big necropost, this was already solved...