Found an issue where ckeditor would come up, but "outside" and separate for the right text box. Bug is in IE and not Firefox. Traced the issue to the "name" given to the text box. If the name uses underscores "_", it throws it off.
So if the name of the textbox was "text_box_test"
and you used
CKEDITOR.replace( 'text_box_test' );
everything was fine in Firefox. But in IE, it would display the textbox normally and show the ckeditor shifted to the top of page.
changing the name to "textboxtest"
and using
CKEDITOR.replace( 'textboxtest' );
worked.
Not sure where to place this, couldn't find it anywhere, good luck.
So if the name of the textbox was "text_box_test"
and you used
CKEDITOR.replace( 'text_box_test' );
everything was fine in Firefox. But in IE, it would display the textbox normally and show the ckeditor shifted to the top of page.
changing the name to "textboxtest"
and using
CKEDITOR.replace( 'textboxtest' );
worked.
Not sure where to place this, couldn't find it anywhere, good luck.