@kaepsele, For some reason I don't have a private message from you in this Forum.
@simonstar66, No problem about hijacking; this is all valuable feedback. Your config file looks good to me, that is if I put it in between triple backticks (hint):
enabled: true
active_admin: false
editor: contenttools
editable_self: true
With ContentTools make sure your page content is HTML. ContentTools can not edit markdown so if you use a standard Grav page, which by default uses markdown nothing will happen.
To make sure the Edit button will be on top of al other HTML elements in the page, through CSS I gave it a z-index of 1000. Usually this is enough. But the Greyscale theme navigation bar has a z-index of 1030 so effectively it covers the Edit button and makes the button inaccessible. In fact the SimpleMDE editor itself is also partially hidden behind the Greyscale nav bar making the toolbar useless.
The fix is simple. In the file user/plugins/editable/editors/simplemde/css/customstyles.css just add z-index: 10000 to the editable class, so that class looks like this :
.editable {
margin-top: 32px;
position: relative;
z-index: 10000;
}
I'll apply this fix to the current code on GitHub.
Thanks!