MyBB Community Forums

Full Version: Toolbar Text Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to change the color of the text of the drop down menu for Font, Text Size, and the Video. I have Font and Text Size done. How do I find the name of the one that changes the Video under CSS.
Add the following classes to your CSS. The first refers to the default style of the items in the list, and the second to the style of the items on hover.

.editor_dropdown_menu
{
    color: #ff0000;
}

.editor_dropdown_menu_item_over
{
    color: #ff0000;
}
Is there no way to just adjust the current one? I changed the ones for Font and Text Size by adding color to the one that started with
.messageEditor .toolbar_dropdown, .messageEditor .toolbar_dropdown_image
Is there a similar one for the video?
I believe this would be it:

.messageEditor .editor_dropdown_menu li.editor_dropdown_menu_item_over {
	background-color: #f5f5f5;
	cursor: pointer;
}

.messageEditor .toolbar_button_color .editor_dropdown_menu {
	width: 153px;
	height: 98px;	
	padding: 1px;
	background: #EFEFEF;
	margin-left: -1px;
}
The first one was similar to what I was looking for. That changes the when you have a cursor over it. I need the one of the original text without having to hover over it.
Ah! This is it:

.messageEditor .editor_dropdown_menu li {
	list-style: none;
	padding: 3px 3px 3px 12px;
	margin: 0;
	position: relative;
	cursor: pointer;
}
Thanks a lot for the help. Starting to understand this a little better.