Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Not Solved [General] Toolbar Text Color
#1
Not Solved
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.
#2
Not Solved
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;
}
#3
Not Solved
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?
#4
Not Solved
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;
}
#5
Not Solved
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.
#6
Not Solved
Ah! This is it:

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


Forum Jump:


Users browsing this thread: 1 Guest(s)