I'm having a problem with FCD Editor in Drupal 6.x system. It works perfect in all browsers except IE. I use IE 7 browser. In IE it shows a link to enabled rich text editor, but when I click on that link it gives me this error message:
Line: 1778
Char: 9
Error: 'oFCK_1' is null or not an object
Code: 0
URL: http://my.site.com/?q=node/add/story
Re: FCK Editor doesn't show in Drupal in IE
Re: FCK Editor doesn't show in Drupal in IE
In the Drupal basic theme file (page.tpl.php) there was a css id named "menu"
<div id="menu">
In IE 6 the name "menu" was making a coflict with something else and I've got a Javascript error message.
So I simply changed the id name from "menu" to somethin else - e.g. "top-menu" and it works perfect.
Like this:
<div id="top-menu">
By