Ok so when the full editor pops up it takes up the entire width of the screen at the bottom of the page. I'd like for it to be fixed in the middle of the page.
I tried adding
jQuery('.cke_editor_fulleditor').css({"border":
"3px solid gray", "width": "400px","top": "50%","left": "50%",
"position": "fixed", "margin": "-150px 0px 0px -200px"});
after this line of code CKEDITOR.replace('fulleditor', { customConfig: 'configFull.js' } );
but it did not work. I tried adding straight css to contents.css and that had no effect. I added the css to the index.html page where the editor appears and that does nothing. The only way I can seem to change it is after it has appeared by adding css to the style editor in firefox or changing the css via jquery in the firebug console.
I even tried adding the CKEDITOR.addCSS method before the CKEDITOR.replace('fulleditor', { customConfig: 'configFull.js' } ); line with no success.
Why the heck can I not get this editor where I want it?

Seriously? 2 days later and
Seriously? 2 days later and nobody has any helpful advice ;(
I thought this was the number 1 editor in the world?
The community forums are a
The community forums are a place where users come to assit each other. In the 4 posts you've made, and 2 days you have waited, whom have you assisted? Anyway, try using this code to set the editor's width size:
As for the alignment, it's related to code before the editor instance so it's a page design issue, not a CKEditor issue. Maybe put it in a div and center it?
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
I would gladly assist anyone
I would gladly assist anyone who had an issue that I knew the answer to. Being that I just started using ckeditor, my learning curve is still in it's beginning stages.
Come on over to stackoverflow and you'll notice how my answers far outweigh my questions.
That code will help in setting the size but right now my full editors are 'trapped' in a div box and it's all smashed in there. I'd like the entire editor to appear smack dab in the center of the page fixed position.
I'd like to set multiple css properties. Why doesn't this work? CKEDITOR.addCss( '#cke_fulleditor{border: 3px solid gray; width: 400px;top:50%;left:50%;position:fixed;margin:-150px 0px 0px -200px;}' ); I've added it before the creation of an editor instance as per the documentation. Still no dice.