This applies to JIRA an Confluence.
When you scroll down on a page, the menu bar disappears.
Is there a way to keep this fixed on top of the screen?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Time for the waiting game!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This may be a bad idea ... haven't fully tested it ... but you could do something like this in your space or global stylesheet ...
#header {
display: block;
position: fixed;
z-index:100;
top: 0;
right: 0;
left: 0;
}
#header + .ia-splitter {
margin-top: 41px;
}Again, I have not tested this fully and probably it wouldn't work in all situations as Confluence is heavily JavaScript driven for it's layout, but it may be a place to start for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.