I haven't been able to set default CSS for the editor area in IE. Defining styles in 'FCKeditor/editor/css/fck_editorarea.css' worked for Firefox, but not IE. I also tried to change the basic skin stylesheet, but without any success. The only way I managed to get a satisfying result for IE was to add my CSS to the FCKeditor's value:
I haven't been able to set default CSS for the editor area in IE. Defining styles in 'FCKeditor/editor/css/fck_editorarea.css' worked for Firefox, but not IE. I also tried to change the basic skin stylesheet, but without any success. The only way I managed to get a satisfying result for IE was to add my CSS to the FCKeditor's value:
<form action="savedata.php" method="post">
<? // style $style = " <style> BODY { font-family: verdana, tahoma, arial; font-size: 12px; color: #70C000; } A { text-decoration: none; color: #75FF0C; text-decoration: underline; } </style> "; // capturing content $content = file_get_contents("index.html"); $content = preg_replace("/.*<partners>(.*)<\/partners>.*/is", "\\1", $content); $oFCKeditor = new FCKeditor('FCKeditor') ; // $oFCKeditor->BasePath = '/gg/FCKeditor/'; $oFCKeditor->BasePath = 'http://localhost/Gegarandeerd%20Goedkoper/site/FCKeditor/'; $oFCKeditor->ToolbarSet = 'GegarandeerdGoedkoper'; $oFCKeditor->Width = "590"; $oFCKeditor->Height = "350"; $oFCKeditor->Value = $style . $content; $oFCKeditor->Create() ; ?>