The web app that includes Cute Editor (for PHP) lets a user specify templates for use with the edit area (textarea . iframe).
So the app does not know the styles, but retrieves a style sheet from database (where it is saved along with few other goodies).
The app reads this style sheet and writes out a file style.css which is then passed to:
$editor->EditorWysiwygModeCss="style.css";
I got the style.css to apply. It works now.
The next problem I have is that when the Editor and the style.css are loaded in the browser and then I change the style.css and refresh the browser, the new style.css does not take effect unless I clear the browser cache. (IE browser).
So how do I make the new style.css take effect?
HELP!