Inline editor places itself off the screen
I'm just starting to implement some inline editing, which is working pretty well, but the editor always pops up at (0, 0) relative to where you click, no matter the position of the element. Thus, if the editable content area is near the right edge of the screen, the editor only shows a slice of itself.
Is there a way to make it always show up in the middle of the page or something like that?
Comments
In the /fuel/modules/fuel/assets/css/fuel_inline.css file, you can edit the .__fuel_edit_active__ line (line 108 for me, though yours may be different) to something like this (with 'top' and 'left' being whatever you want them to be, of course):
.__fuel_edit_active__ {
top: 100px !important;
left: 200px !important;
z-index: 1001;
}