I'm using TinyMCE for a content editor and it adds an 8px margin to the body.
I've went into the stylesheets and changed the body margins to 0, even added body { margin:0 !important; }, but it will not remove it.
It says it's coming from content.css line 1 but Firefox inspection tool will not tell me which one...
I've also tried using jQuery $('iframe body').css('margin','0'); and $('iframe').contents().find('body').css('margin','0');
The TinyMCE loads as an iframe, thus causing problems.
Requested HTML
<iframe id="content_ifr" frameborder="0" src="javascript:""" allowtransparency="true" title="Rich Text AreaPress ALT-F10 for toolbar. Press ALT-0 for help" style="width: 100%; height: 100px; display: block;">
#document
<!DOCTYPE >
<html>
<head xmlns="http://www.w3.org/1999/xhtml">
</head>
<body id="tinymce" class="mceContentBody " contenteditable="true" onload="window.parent.tinyMCE.get('content').onLoad.dispatch();" spellcheck="false" dir="ltr">
Here's the starting HTML.