Hi,
I've just installed CKeditor and it works perfectly, except from in IE. When the page is loaded, and i click ind the box to start writing, nothing happends. Only if i click in the first line of the box i can write. Not if i click under the first line.
But after it has been activated one time by clicking in the first line, i can activate it again by clicking anywere in the box.
It only happens in IE not FF.
Any ideas?
//Daniel
I've just installed CKeditor and it works perfectly, except from in IE. When the page is loaded, and i click ind the box to start writing, nothing happends. Only if i click in the first line of the box i can write. Not if i click under the first line.
But after it has been activated one time by clicking in the first line, i can activate it again by clicking anywere in the box.
It only happens in IE not FF.
Any ideas?
//Daniel
Re: Internet explorer, activate box
This is an ideitifed bug that has been confirmed in IE7 and 8. I do not know the status on the fix, hopefully in version 3.1. What you can do for now, to help work around this is when you create your new editor to add a <BR/> to the workspace so that you can more easily click on the starting area. This will help for now.
Re: Internet explorer, activate box
Another temporary fix is to change the contents.css, in body { } add height with the value being the height of the edit area. I have mine at 130px, I believe standard is something like 200px. Then you can click anywhere in the box to activate it.
However, for some reason the top-margin on the p-tag causes a problem that makes the edit box larger when you click in it.
You need to fix that. You can use padding instead of margin if you like the spaces. The important thing is to set the top-margin of the p-tag to 0. Like this for example:
p {
margin:0 12px 0px 12px;
padding-top:3px;
}