Make Top Bar static

Hello - I would like to make my top bar static so it does not move when I scroll down the page. I have tried several codes that have been posted in other peoples posts regarding this issue and they all seem to not fit within the formatting of my specific site. It throws something off.

Thanks
David

Hi David,

The solution depends on the website and settings that you have. I checked your website and came up with this solution. Please add the code below to X > Theme Options > CSS:

body .x-topbar {
    position: fixed;
    width: 88%;
    max-width: 990px;
    z-index: 100000;
}

body .x-navbar.x-navbar-fixed-top.x-container.max.width,
body .x-main.full {
	margin-top: 46px;
}

Thank you.

Perfect, thank you

You are most welcome. :slight_smile:

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