When using ckeditor 3.0, people can't click in the editor and start typing on some of our pages when editing in IE7 and IE8. It is fine in FF 3.5. The mouse cursor turns into the arrow cross cursor and it looks like you are selecting the entire paragraph. You can click on the very right hand side of the editor and then the cursor is at the end of the line that you are aligned with, but when you use arrow keys to move left or right, it just takes you to the start of the next paragraph.
I saw another post that had a different but similar problem and it said that this was a bug in IE that might be fixed in 3.1. Has anyone found a workaround? There are a lot of nested divs on the page. The designer also used divs to create the two columns of text. Not how I would have done it, but that's life. In order to get all of the styles right inside the editor, I had to duplicate the main content div inside the textarea. So
With the textarea it has to be:
My suspicion is that between the bugs in IE and the large number of nested divs, IE is just puking. But if there's a workaround, I'd love to know it.
I can post pared down code that just has the divs in it, but even that is 86 lines.
Thanks!
I saw another post that had a different but similar problem and it said that this was a bug in IE that might be fixed in 3.1. Has anyone found a workaround? There are a lot of nested divs on the page. The designer also used divs to create the two columns of text. Not how I would have done it, but that's life. In order to get all of the styles right inside the editor, I had to duplicate the main content div inside the textarea. So
<div id="content"><p>stuff</p></div>
With the textarea it has to be:
<div id="content"><textarea>div id="content"><p>stuff</p></div></textarea></div>
My suspicion is that between the bugs in IE and the large number of nested divs, IE is just puking. But if there's a workaround, I'd love to know it.
I can post pared down code that just has the divs in it, but even that is 86 lines.
Thanks!