How to keep the menu bar fixed on top of the screen

Marcel Plomp (inactive) March 4, 2016

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?

2 answers

1 accepted

0 votes
Answer accepted
GabrielleJ
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 4, 2016

I don't think JIRA and Confluence have that feature natively. You can always open up a "Suggestion" to Atlassian and see what they think about it smile support.atlassian.com

Marcel Plomp (inactive) March 7, 2016

Just created two issues.

Like Igor Polishchuk likes this
GabrielleJ
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 7, 2016

Time for the waiting game!

0 votes
Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 4, 2016

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.

Suggest an answer

Log in or Sign up to answer