Thanks for the information. I guess that will give me something to look at for right now. Does anyone have any idea of how to fix this until it shows up in an official release? It's bug number is #2474. Thanks again.
// Is the editor still not on the top left? Let's find out and fix that as well. (Bug #174)
var editorPos = FCKTools.GetWindowPosition( eMainWindow, eEditorFrame ) ;
if ( editorPos.x != 0 )
eEditorFrameStyle.left = ( -1 * editorPos.x ) + "px" ;
if ( editorPos.y != 0 )
eEditorFrameStyle.top = ( -1 * editorPos.y ) + "px" ;
The SaveStyles() function basically looks for the "class" or inline "style" attributes defined on the element, saves it to an object and clears out the styles on the page. This will then allow the editor to maximize normally. In your case the <div id="content"> does not have any "class" or "style" attribute set on it. In turn the SaveStyles() fails to clear out the style setting on this div which leaves it positioned where it is on the page and screws up the maximize editor function.
Modifying your div to something like <div id="content" class="content-class"> and changing the CSS to define .class{} instead of #class{} might take care of the issue. I did a similar test run and it seemed to fix the problem.
Re: Maximize Editor gets covered
Please, file a ticket about it.
Re: Maximize Editor gets covered
Re: Maximize Editor gets covered
Re: Maximize Editor gets covered
The SaveStyles() function basically looks for the "class" or inline "style" attributes defined on the element, saves it to an object and clears out the styles on the page. This will then allow the editor to maximize normally. In your case the <div id="content"> does not have any "class" or "style" attribute set on it. In turn the SaveStyles() fails to clear out the style setting on this div which leaves it positioned where it is on the page and screws up the maximize editor function.
Modifying your div to something like <div id="content" class="content-class"> and changing the CSS to define .class{} instead of #class{} might take care of the issue. I did a similar test run and it seemed to fix the problem.
Hope that helps,
Shri
Re: Maximize Editor gets covered