Sticky top bar

Hi guys,

just a small question. Is it possible to make the top bar sticky in pro, and how? I’ve looked around, but didn’t find a clear answer other than that it should be possible, without any explanation.

Thanks in advance for answering!

greetings Tommy

Hi There,

To achieve that, please add this custom CSS under Theme Options > CSS:

.x-topbar {
    position: fixed;
    width: 100%;
}

.x-navbar {
    top: 36px;
}
@media (max-width: 768px){
    .x-navbar {
        top: 52px;
    }
}
@media (max-width: 635px){
    .x-navbar {
        top: 68px;
    }
}
@media (max-width: 440px){
    .x-navbar {
        top: 84px;
    }
}

Hope that helps and thank you for understanding.

Thanks man, that did the trick. :slight_smile:

We are delighted to assist you with this.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.