Hey Everyone,
I'm checking out ckeditor and I'm wondering if it's possible to tell it to wrap in a div that's wrapped in body instead of just body. When creating pages the content is placed in a content div so in the editor what i see really isn't what i get because it thinks it's being placed within the body tags. Hopefully this makes sense.
Thanks in advance.
-Justin
Comments
Then I can specify my content's div class in the ck_editor_settings in the config...
$config['ck_editor_settings'] = array(
'bodyClass' => 'maincontent',
);
and now it styles the preview like that div. That should work.
Thanks!
-Justin