Summary: Is it possible to use the inline CKeditor function but still choose to display the editor in a fixed dynamic position?
I am currently building on a site editor. You can drag and drop elements. Per element, there is a div in the top where I want to 'paste' my editor in. But I dont want to use an iFrame because this messes up the CSS of my elements.
First try
After using the CKEDITOR.inline() function the result looked like this:
This is pretty hindering, because the bar lays on top of other elements.
Second try
I have downloaded a plugin for the CKeditor: "shared space". This fixed the bar to the top, which is great, but because it creates an iframe, the content gets hidden and scrollable. This is not very great for the UX:
Because this is a iframe, the text is put in a container with a static height.
I can set the height, but again: this is not very user friendly.
Question
All I want is to know how I can fix a floating ckeditor to a position of my choice?