I'm not sure where this problem is coming from, but I cant get the Editor to work properly in IE.
To make it display, I have to use class='ckeditor' and while using this it changes the width to 100% and I cant change it.
Below is what the code looks like and, no matter how much I change it, the width stays the same. Any ideas on what I'm doing wrong / a solution?
Many Thanks!
Edit: I fixed this by taking the JS back to the orginal basic code.
To make it display, I have to use class='ckeditor' and while using this it changes the width to 100% and I cant change it.
Below is what the code looks like and, no matter how much I change it, the width stays the same. Any ideas on what I'm doing wrong / a solution?
Many Thanks!
<td><textarea id='description' class='ckeditor' name='description'>$settings[description]</textarea></td>
</tr>
<script type='text/javascript'>
//<![CDATA[
window.onload = function()
CKEDITOR.replace( 'description',
{
width : '475px',
skin : 'kama',
toolbar : 'minimum',
});
//]]>
</script>
Edit: I fixed this by taking the JS back to the orginal basic code.
<script type='text/javascript'>
CKEDITOR.replace( 'editor1',
{
width : '475px',
skin : 'kama',
toolbar : 'minimum',
});
</script>
Re: [SOLVED] IE CKEditor Display and Width
1. class="ckeditor"
2. CKEDITOR.replace(...)
They are alternatives to each other and mixing them may cause subtle problems, as yours.