2010-08-26, 17:07:59
In GetSimple's page editor (CKeditor), tf you want the Enter key insert a carriage return (<br />) instead of a "blank line" and new paragraph (</p><p>):
Edit admin/template/js/ckeditor/config.js, between lines 8 to 11 insert this:
before the closing:
This may be more intuitive for most users, used to their wordprocessor.
Edit admin/template/js/ckeditor/config.js, between lines 8 to 11 insert this:
Code:
config.enterMode = CKEDITOR.ENTER_BR;
before the closing:
Code:
};
This may be more intuitive for most users, used to their wordprocessor.