The class .tc-tiddler-title is set to position: sticky
and top: 0px
… So if you create a new stylesheet tiddler and add:
.tc-tiddler-title {
top: 30px;
}
BUT … that’s a hack and 30px is an assumption, which will also be applied, if the menubar is not there anymore. …
So you should raise an issue at GitHub. IMO there should be a new class egtc-title-sticky
, which should be there, when the title config is set to sticky.
The menubar plugin should then contain a stylesheet setting similar to the one below
.tc-tiddler-title .tc-title-sticky {
top: 30px;
}
Any other plugin, that needs some “headroom” can do the same thing. … When all plugins are deactivated, the setting goes away automatically. If one plugin is active that needs it, it will be set accordingly.