How does TinyMCE get the popup iframe height?

CyberAP

Well-known member
I have a problem with the TinyMCE iframe. It has a height of 750px in any iframe. I searched templates and didn't find anything for that.
Also opened tiny_mce_popup.js and tiny_mce.js but didn't understand anything because I'am not familiar with js.
Here is what I get:
bug.webp
 
That is more than likely linked to a template/css change you've made elsewhere.
Have you got a link to your site?

The actual code for that is:
Code:
<div id="mce_2" class="editorInlinePopup" style="width: 355px; height: 127px; top: 1080px; left: 783px; z-index: 300001;">

Check the contents of editor_ui.css to see if anything has been set in there.
 
That is more than likely linked to a template/css change you've made elsewhere.
Have you got a link to your site?

The actual code for that is:
Code:
<div id="mce_2" class="editorInlinePopup" style="width: 355px; height: 127px; top: 1080px; left: 783px; z-index: 300001;">

Check the contents of editor_ui.css to see if anything has been set in there.
I know and in my case the height is 750 px.

It's detected after the popup loads. I suspect you have a min-height somewhere.
Yeah, you're right! It was in body. Thanks!
 
Top Bottom