I am trying to resize the spell check popup window. Right now it is cutting off the Ignore All button and Replace All button (you cannot see the word "All"). I am using spellerpages as the spell checker.
Here is what I have tried so far but have not gotten any of it to work.
In fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
this.popUpProps = "width=400,resizable=yes";//null ;
In fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
<body class="controlWindowBody">
<form name="spellcheck">
<table border="0" width="400px" > --this being the outermost table
In fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
I have tried adjusting rows, cols, width in the frameset and the frame tags, but nothing seems to work/
<frameset rows="*,201" onLoad="postWords();">
<frame src="blank.html">
<frame src="controls.html">
</frameset>
Anybody have any ideas?
Thanks
Here is what I have tried so far but have not gotten any of it to work.
In fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
this.popUpProps = "width=400,resizable=yes";//null ;
In fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
<body class="controlWindowBody">
<form name="spellcheck">
<table border="0" width="400px" > --this being the outermost table
In fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
I have tried adjusting rows, cols, width in the frameset and the frame tags, but nothing seems to work/
<frameset rows="*,201" onLoad="postWords();">
<frame src="blank.html">
<frame src="controls.html">
</frameset>
Anybody have any ideas?
Thanks
Re: Resize spell check popup
In /fckeditor/editor/dialog/fck_spellerpages.html there is the body tag with an iframe inside it.
<body style="OVERFLOW: hidden" scroll="no" style="padding:0px;">
<iframe ....></iframe
</body>
I removed 'style="OVERFLOW: hidden"' from the body tag and all buttons in the spell checker appear entirely.