Editor Modal size
Editor Modal size
Does anyone know of a way to change the size of a modal that Editor creates?
When using TinyMCE as the editor, the modal is way too small. Causes TinyMCE to not be big enough. I added the resize option to it, but that doesn't cause the modal to grow.
When using TinyMCE as the editor, the modal is way too small. Causes TinyMCE to not be big enough. I added the resize option to it, but that doesn't cause the modal to grow.
This discussion has been closed.
Replies
At the moment you need to use the inspector in your browser to do that, or look at the CSS. The new documentation for 1.3 documents the DOM and class structures that Editor uses.
Allan
Ok.. good info. CKEditor is way too small also. Really need to fix that up.
I changed the CSS to this:
div.DTED_Lightbox_Wrapper{position:fixed;top:0;left:5%;margin-left:0;width:90%;height:90%;z-index:11}
It works a lot better. Fills the window much better.
And CKEditor is usable now.
I have a similar problem
With a table that has a large amount of fields, the modal div tucks itself behind my drop down menu that has a z-index larger than the modal so I cant click the DTED_Lightbox_Close div. So I wanted to change the "top:50px" and "height:70%" css settings in the DTED_Lightbox_Wrapper but this doesnt work.
On inspecting the element somehow the element has acquired a style="opacity:1; top:0px" which overrides the css , but I cannot see where this happens in the js file
I am using dataTables.editor.min.1.3.2.js and the corresponding min.ccs file.
Mark