They're only white (actually lightgray) when no options from the menu can be used.
e.g. when calling the contextmenu with no selected text and no text in the clipboard, the contextmenu for copy/pasting text cannot be used, hence it's gray.
If IE shows it, I think it's an IE bug (css related)
take a look at the fck_contextmenu.css file in the skins directory to customize the looks of any context menu
No, here it's white even if some text is selected. Try the context menu on a table, every item is white as well (at least here)... The only way to see a menu item is move move the mouse on it, so that the selection makes it readable. Items that should be grayed out are plain white and cannot be read even with the above trick since the item is not selectable... unfortunately I cannot post a screenshot to show what happens...
I had the same problem, and it did turn out to be a CSS issue. I had: table { font-size: 1em; width: 100%; } I removed the width parameter, and the problem went away.
RE: A silly problem with Firefox
They're only white (actually lightgray) when no options from the menu can be used.
e.g. when calling the contextmenu with no selected text and no text in the clipboard, the contextmenu for copy/pasting text cannot be used, hence it's gray.
If IE shows it, I think it's an IE bug (css related)
take a look at the fck_contextmenu.css file in the skins directory to customize the looks of any context menu
RE: A silly problem with Firefox
The only way to see a menu item is move move the mouse on it, so that the selection makes it readable. Items that should be grayed out are plain white and cannot be read even with the above trick since the item is not selectable... unfortunately I cannot post a screenshot to show what happens...
RE: A silly problem with Firefox
Are you sure it's not a css issue?
RE: A silly problem with Firefox
RE: A silly problem with Firefox
table {
font-size: 1em;
width: 100%;
}
I removed the width parameter, and the problem went away.
Thanks, dvdmierden, for the suggestion!