Hello
Tried removing the padding values (and set them to 0px) for the style applied to the editor area (objcontent) but to no avail, can the padding be removed? its muckin up me layouts!!
thnk
scott
Tried removing the padding values (and set them to 0px) for the style applied to the editor area (objcontent) but to no avail, can the padding be removed? its muckin up me layouts!!
thnk
scott
RE: Padding INSIDE editor
Ive added some code at the end of the initEditor() function. The editor complies with certain JS styles... and thus:
//ive passed over the background color of the page which gives the editor a differet bgcolor
objContent.DOM.body.bgColor=URLParams['bgcolor'];
// remove margin within the editor
objContent.DOM.body.topMargin='0';
objContent.DOM.body.rightMargin='0';
objContent.DOM.body.bottomMargin='0';
objContent.DOM.body.leftMargin='0';
Hope this helps...!!