Moving the CKEditor Built-in Toolbar

I am using CKEditor 4 inline. Is it possible to change the location of the toolbar, for example. 50px over div editor?

Thank!

+5
source share
2 answers

If you want to preserve this floating toolbar behavior, you can move it using these options .

But if you want to save the toolbar in one place, then check this plugin: http://ckeditor.com/addon/sharedspace

Here is an example, but you need to build a CKEditor package with this plugin, and then you can check it.

+7
source

margin-top: -50px; , 50px div.

+1

All Articles