I'm trying to use FCKEditor 2.4.2 on a plone 2.5 site.
It seems like the background color is hardcoded to white in this editor, which make it hard to use on a site with black background.
If I use Firefox I can set
.ArchetypesRichWidget {
background-color:black;
}
in ploneCustom.css. But this has no effect when I'm using Internet Explorer.
Has anyone encountered this problem and solved it, or can anyone tell me how I set the backgroundcolor in FCKEditor in general?
It seems like the background color is hardcoded to white in this editor, which make it hard to use on a site with black background.
If I use Firefox I can set
.ArchetypesRichWidget {
background-color:black;
}
in ploneCustom.css. But this has no effect when I'm using Internet Explorer.
Has anyone encountered this problem and solved it, or can anyone tell me how I set the backgroundcolor in FCKEditor in general?
RE: Background color in FCKEditor (in Plone)
Re: Background color in FCKEditor (in Plone)
Any ideas?
Re: Background color in FCKEditor (in Plone)
Any ideas ?
Jedymaster
Re: Background color in FCKEditor (in Plone)
Just modify the file : editor/css/fck_editorarea.css
Change the item background-color in the body style to match the color you want !
Bye!
Jedymaster
Re: Background color in FCKEditor (in Plone)
Re: Background color in FCKEditor (in Plone)
body{
background-color:#ffffff !important;
}
Hope this helps someone else!
Re: Background color in FCKEditor (in Plone)