resize_enabledfalse
CKEDITOR.replace('ckeditregion',
{
docType: '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
enterMode : CKEDITOR.ENTER_P,
shiftEnterMode: CKEDITOR.ENTER_BR,
entities: 'false',
entities_additional : '',
entities_greek : 'false',
entities_latin : 'false',
height: '200',
resize_enabled : 'false',
resize_maxHeight : '300',
resize_maxWidth : '948',
resize_minHeight: '200',
resize_minWidth: '948',
toolbar: 'Basic',
uiColor: '#dddddd',
width: '948'
});

Re: Disable resize ? Remove editor border?
Posted By: martinording » Tue Nov 24, 2009 5:50 am
Open ckeditor.js (compressed version)
Search for cke_bottom
In that area you replace
<tr',s?'':' style="display:none"','><td id="cke_bottom_
with
<tr style="display:none"','><td id="cke_bottom_
The name of variable s could differ depending on your version of ckeditor.
And the bottom bar is gone.
Note: you lose the resizing handle as well. Full window editing still works though.
Re: Disable resize ? Remove editor border?
resize_enabled: false,
Re: Disable resize ? Remove editor border?
Re: Disable resize ? Remove editor border?
/ckeditor/skins/kama/editor.css
/* Original: span.cke_skin_kama{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #D3D3D3;padding:5px;} */ /* New */ span.cke_skin_kama{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid;border-color:#eee #ddd #ccc #ddd;padding:0;}It's near the beginning of the file.
Re: Disable resize ? Remove editor border?
-Randy
Re: Disable resize ? Remove editor border?