Opened 12 years ago
Closed 12 years ago
#10245 closed Bug (fixed)
Configuration questions
Reported by: | tboeker | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
I am attempting to configure CKEditor:
var oEditor = CKEDITOR.replace('editor1', {
disableNativeSpellChecker: false, removePlugins: 'elementspath', resize_enabled: false
}); oEditor.on('instanceReady', function(oEvent) {
oEvent.editor.resize(634, 190);
});
However, 1) I have not found a way to get rid of the blank (blue) space on the right, and 2) text continues to wrap half way across what I think is the editor. Please see attached screen shot.
Thank you for your assistance.
Attachments (1)
Change History (4)
Changed 12 years ago by
Attachment: | ckeditor.png added |
---|
comment:1 Changed 12 years ago by
Keywords: | resize config removed |
---|---|
Status: | new → pending |
Version: | 4.0.2 |
I have tried your code in standard CKEditor sample but didn't get any blue border. What it is can be checked with e.g. firebug.
Have you done some custom modifications in editor and you are asking for support or you are reporting a bug? If this is bug report please provide more information explaining how to reproduce and if possible please provide reduced and working sample HTML page helping to reproduce this problem.
comment:2 Changed 12 years ago by
Closed dup of this issue - #10251.
Most likely some of your CSS styles are overwriting editor's styles. You need to figure out which or send us a sample on which we can reproduce the issue and figure out solution ourselves.
comment:3 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | pending → closed |
Got it with CSS: div#cke_1_contents {width:100%;}
Telling me it was a CSS issue pointed me in right direction; width was defaulting to 300px.
Thank you
screen shot