Re: FCKEditor Background Image -> Adjusting
Answering my own question. This solution applies to TikiWiki 1.10, your mileage with earlier versions and an FCKEditor may vary.
The file needed is located in:
tiki_root/lib/fckeditor/editor/css/
The filename:
fck_internal.css
Here you want to override the HTML style and create a Body style to override as well... here's the basic one I used to set the background to white:
html
{
background: #ffffff;
background-image: none;
background-color: #ffffff;
min-height: 100%; #this was here by default
}
body
{
background: #ffffff;
background-image: none;
background-color: #ffffff;
}