Making the dashboard header static

Hello Helical,

I am using Helical Insight enterprise version. I have created a dashboard using dashboard designer. However as soon as I scroll the dashboard header also gets scrolled and becomes hidden. Is there a way to make the dashboard static.
You can refer to the below images to see that the header is getting hidden as soon as we scroll.
image

Thank You
Navee

1 Like

Hello Navee,

You can easily handle the same using CSS. You can inspect element and find out the element id of that and then apply position CSS to customize it.
Below is the kind of CSS which can be added into the CSS section of the dashboard designer

#dashboard-headerHTML {
position: fixed !important;
z-index: 1000 !important;
}

You can further make the changes as required.
Thank You
From Team Helical