When I added a graphic as background image to the site, CEWP's rich text editor picked it up as its background. Found a simple solution here
simply add a div within the body tag and
body .MyDiv {
background: url("myimage.gif");
}
instead of just
body {
background: url("myimage.gif");
}