Here are the present contents of my $:/core/ui/EditTemplate/controls:
\define config-title()
$:/config/EditToolbarButtons/Visibility/$(listItem)$
\end
<div class="tc-tiddler-title tc-tiddler-edit-title">
<$view field="title"/>
<span class="tc-tiddler-controls tc-titlebar"><$list filter="[all[shadows+tiddlers]tag[$:/tags/EditToolbar]!has[draft.of]]" variable="listItem"><$reveal type="nomatch" state=<<config-title>> text="hide"><$transclude tiddler=<<listItem>>/></$reveal></$list></span>
<div style="clear: both;"></div>
</div>
How do I edit the $:/core/ui/EditTemplate/controls tiddler so that the buttons are always in view, i.e. stuck to the top of the screen, when in EditTemplate mode?
.tc-editor-toolbar { position:fixed; top:0; }.tc-tiddler-edit-title
...that I needed, but with your instructions as a template, I was able to find the correct tc by trial and error, plugging in the various tc's I found within the $:/core/ui/EditTemplate/controls tiddler until I found the correct one.
I ended up with this:
.tc-tiddler-edit-title { position:fixed; top:0; left:0; right:0; padding:3px; background-color: pink; }
PROBLEM:
The chevron (that reveals and hides the TiddlyWiki title and tab menu) overlays my new fixed toolbar, and sometimes gets in the way of the particular toolbar button I need to press. How do I remove the chevron? I never use it anyway.