Hi,
I managed to get background image working in editor area simply defining background-image -style for the <td> -tag in which the editor is. This works fine in Opera and FireFox but not in IE. Can anybody tell how to use background image in editor area so that it works also in IE.
Thanks in advance!
I managed to get background image working in editor area simply defining background-image -style for the <td> -tag in which the editor is. This works fine in Opera and FireFox but not in IE. Can anybody tell how to use background image in editor area so that it works also in IE.
Thanks in advance!
RE: Background image in editor doesn't work i
Maybe this would work for you:
In the OnComplete function do this...
function FCKeditor_OnComplete( editorInstance )
{
var edBody = editorInstance.EditorDocument.firstChild.lastChild;
edBody.backgroundImage = '<path to image>';