creaky

Customer
I have moved the visitor tabs to the staff bar and would like them to be sticky.

I've found the option to stick the Primary and sub-navigation but not the staff bar. I'm assuming there isn't one?

Can it be done with some CSS/LESS instead?
 
We're looking at implementing it into the next version. We're avoiding any additional JS at all cost and trying to use just the stock XF to reduce overhead. You can use CSS for now in extra.less:

Code:
.logged-in
{
    .p-staffBar
    {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 306;
    }
    .xb-page-wrapper
    {
        padding-top: 38px;
    }
}

However, we need a better way to implement it to allow you to stick the mod bar + nav + sticky sidebar ect...
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back