Hi. I noticed that there's always a big gap between each lines. Even I used upper case there's still a big gap(white spaces) in between. It's not like the editor in here.
How can I change it so it's like this editor I'm typing? Is it the font that cause that?
How can I change it so it's like this editor I'm typing? Is it the font that cause that?

Re: Why there's a bigger gap between lines?
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Why there's a bigger gap between lines?
Here's what I did in php. I didn't specify any style so I guess by default it's like that? How do I make the space between each text line look like the demo page? Thank you.
include("../../ckeditor.php");
$CKEditor = new CKEditor();
$CKEditor->returnOutput = true;
$CKEditor->basePath = '../../';
$CKEditor->config['width'] = 400;
$CKEditor->config['height'] = 60;
$initialValue = '';
$config['toolbar'] = array(
array('SpellChecker', 'Scayt'),
array('Smiley')
);
$config['removePlugins'] = 'elementspath';
$config['skin'] = 'kama';
echo $CKEditor->editor("editor", $initialValue, $config);
Re: Why there's a bigger gap between lines?
Why is that?
Re: Why there's a bigger gap between lines?
http://docs.cksource.com/ckeditor_api/s ... .enterMode
http://docs.cksource.com/ckeditor_api/s ... tEnterMode
p { margin-top:0px; margin-bottom:5px; }Re: Why there's a bigger gap between lines?
http://ckeditor.com/demo
Re: Why there's a bigger gap between lines?
You can do it in image styles or (better) define these properties in external CSS file and CSS class to the image. Both of these options are available in Advanced tab in image properties.