I'm using CKEDITOR to update the body content of various pages on a website. While I have applied the existing stylesheets via config.contentsCss
, I need to wrap the editable area in some HTML like:
<div id="contentWrapper">
<div id="content">
[EDITABLE CONTENT]
</div>
</div>
Additionally, I need for only [EDITABLE CONTENT] to be written to the CKEDITOR <textarea>
element and not the wrapper.
Anybody have any ideas?