OK, it's always the same isn't it, you moan a bit and then find out for yourself how to do it about five minutes later.
Maybe I should keep quiet ?
Nahh, I am a helpful person.
If you find you have this problem make sure you set the editors height.
I am using php and this code from the demos (plus my alteration):
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/fckeditor/' ; $oFCKeditor->Height = '500'; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?>
Notice I explicitly put the 'height' in there - well this fixes it in Chrome. Now the tool-bar does not scroll off the top and go AWOL.
Re: Google Chrome bug - top buttons disappear.
Re: Google Chrome bug - top buttons disappear.
Re: Google Chrome bug - top buttons disappear.
OK, it's always the same isn't it, you moan a bit and then find out for yourself how to do it about five minutes later.
Maybe I should keep quiet ?
Nahh, I am a helpful person.
If you find you have this problem make sure you set the editors height.
I am using php and this code from the demos (plus my alteration):
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/fckeditor/' ;
$oFCKeditor->Height = '500';
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?>
Notice I explicitly put the 'height' in there - well this fixes it in Chrome. Now the tool-bar does not scroll off the top and go AWOL.
Hooray for small mercies.