In my php I have:
$editor->EditorWysiwygModeCss = content.css;
in "my_editor.php".
I have several problems/areas of confusion.
(1) What is the assumed directory that content.css needs to be in?
In my case, I have the following folder structure:
public_html
/cuteeditor files
/config
my_editor.php
Where is $editor->EditorWysiwygModeCss's base directory?
(2) The foregoing notwithstanding, I stuck the content.css file in every conceivable location, and got no effect.
For reasons I won't go into, my CSS selectors have to be pretty specific, so a typical statement in the above CSS file might be:
#cute_editor h1 {font-size:16px; color:red}
I am depending upon, here, the observed fact that the generated HTML from the Cute Editor has the entire editing window below a <div id="cute_editor"> tag. However, I note that the entire editor is rendering inside of an <iframe>, and when I point at the h1 element in FireBug, it reports that the only h1 style in effect is "element.style". My content.css files is either not being seen, or my selector(s) are not working with the way Cute Editor generates HTML.
Advice?
Steve Johnson
U.S.Coast Guard Auxiliary