Hi,
I'm investigating if we can use ckeditor instead of fckEditor. So far all things still seems to work fine. Both in IE and Firefox. Except for the HTML source.
The html source of the entered text is not wrapped in IE (tested in IE6, 7 and 8).
All html-code is printed on one line, even no navigationbar is added (so you have to navigate through that code with the left/right arrows).
Another strange thing, only in IE6, is that the html source is printed on a new line if a number was found in the text.
It seems that the following line in my custom config file is causing this behaviour :
config.skin = 'office2003';
Is this normal behaviour of skin : office2003 in IE?
All help is highly appreciated
Maarten
Thu, 02/11/2010 - 15:33
#1
Re: HTML source not wrapped in IE when using skin 'office2003'
This rule can be found in file : ckeditor/skins/office2003/editor.js
.cke_skin_office2003 textarea.cke_source
{
font-family:'Courier New',Monospace;
font-size:small;
white-space:pre;
background-color:#fff;
}
I have changed the value of property white-space to normal.
The html course code is now wrapped like FckEditor.