How do people apply css to the editor iframe (to position it, etc.)? Right now I'm doing this:
oFCKeditor.Create() ;
var frame = document.getElementsByTagName('iframe')[0];
if (frame) frame.style.width = '50%';
....
This works, but there must be a cleaner way...
oFCKeditor.Create() ;
var frame = document.getElementsByTagName('iframe')[0];
if (frame) frame.style.width = '50%';
....
This works, but there must be a cleaner way...
RE: Applying css to editor iframe