Is there a way to change the html with xEditingArea? My example is below. I need the Editor area area different so that it better matches my stylesheets so that a user sees what it will actually look like once posted. I tried changing the body id to content and that didn't work out. Any help would be appreciated.
I see in firebug it is:
I need it to be:
I see in firebug it is:
<html> <head> <!-- FCKeditor stuff and my stylesheets --//> </head> <body> <!-- My Content //--> </body> </html>
I need it to be:
<html> <head> <!-- FCKeditor stuff and my stylesheets --//> </head> <body> <div id="container"> <div id="content"> <!-- My Content //--> </div> </div> </body> </html>