Header Sidebar Overlay

Right now in my Pro Header I am creating a sidebar menu and it pushes the main content to the right to accommodate the space takes.I would rather make it transparent and have it overlay the content the same way you can with a sticky bar at the top, Is this possible?

Hi @Sheri17,

It’s possible with the custom CSS:

  • Please add the header-fixed-left class to your bar:

  • Then add the following CSS:
.x-bar-space-left.header-fixed-left {
    position: fixed;
    background: transparent;
}
  • After that set the background of your bar to transparent:

Hope it helps :slight_smile:

Thanks for your help!

You’re welcome!

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