Is there a way to change the background-color in the editor? I'd like the editor to have the same bgcolor as the page to be edited.
I've tried:
.EditorArea
{
...
background-color: #d7d8e4!important;
}
but no luck. I'd be grateful for any suggestions.
Thanks
Mike
I've tried:
.EditorArea
{
...
background-color: #d7d8e4!important;
}
but no luck. I'd be grateful for any suggestions.
Thanks
Mike

RE: background-color in editorArea
It would really help if anyone has successfully changed the background color of the content area in this editor.
RE: background-color in editorArea
In css/fck_editorarea.css, write :
body {background-color:#FF0000};
and it's OK
RE: background-color in editorArea
RE: background-color in editorArea
http://www.servecenter.net/websites/ima ... eyback.gif
http://www.servecenter.net/websites/ima ... eyback.gif
<script language="javascript" src="js/fck_config.php?back=<?php echo $_GET[back];?>"></script>config.EditorAreaCSS = config.BasePath + 'css/fck_editorarea.php?back=<?php echo $_GET[back];?>' ;<?php echo urldecode($_GET[back]);?>http://www.servecenter.net/websites/ima ... eyback.gif
RE: background-color in editorArea
Thanks to Jim for the "adress" I added this on line 46 in js/fck_editor.js
objContent.DOM.body.style.backgroundColor = "FF0000";
I also tried making a function of it calling it when onLoad was triggerd, but to no avail.
Cheers
Kristoffer