Hi Rick,
The open source editors all provide a way to add a custom class to the body of the page loaded inside the iframe for the editor. I spent some time this morning trying to find out if it was also possible with RadEditor but came up empty.
So, whereas for other editors we can turn of background images like this if needed:
body.wysiwygeditor
{
background-image: none;
background-color: #36535E;
}
we can't do that in RADEditor because we can't add the wysiwygeditor class to the body of the page in the iframe.
So, you would have to do it the way we used to do it, by basically harvesting the body background from style.css and then add it in style-artisteer-overrides.css like this:
body.pagebody { add the background here so it will still show in the page }
body { remove it here so it won't show in the editor}
Best,
Joe