Any idea on how to change the fck toolbar style combo background color?
This combo always has a white background but if I'm using a style defined with a white font face it is invisible. eg.
h1 {font-size: 18px; font-weight: normal; color: #ffffff;}
This combo always has a white background but if I'm using a style defined with a white font face it is invisible. eg.
h1 {font-size: 18px; font-weight: normal; color: #ffffff;}
RE: fck toolbar style combo background color
Try my post of 2006-03-09 10:01 on https://sourceforge.net/forum/forum.php ... _id=257180
RE: fck toolbar style combo background color
.CM_ContextMenu
{
border: 1px solid #8f8f73;
padding: 2px;
background-color: #000000;
}
Any idea which style in the stylesheet refers to the toolbar style dropdown menu background color ?
RE: fck toolbar style combo background color
You can set the background-color of the class '.SC_Panel'
RE: fck toolbar style combo background color
.SC_Item, .SC_ItemSelected{background-color: #000000;}
Sidenote:
I actually use FCKeditor as part of a CMS on numerous websites. I keep one copy of the CMS on the server and each site has a virtual copy (IIS virtual directory). I found that I can set the ".SC_Item" class right in the website stylesheet without having to edit the common fck_contextmenu.css stylesheet in the skins folder. This way each websites' styles are displayed on the correct background color in the dropdown.
I actually do much the same thing for displaying the website contents on the correct color background in the editor.
Thanks again. Stuart.