-1

My Site link: https://staging.kelsan.biz:8144

I want the header div class getHeaderTopFixed to be static. For that I have applied the below styles

box-shadow: gray 0px 0px 5px !important; 
position: fixed; 
top: 0px; 
width: 100%; 
z-index: 9000;

But is not working. Need suggestions on fixing this issue.

Adeel
  • 2,901
  • 7
  • 24
  • 34
Arul Mani
  • 13
  • 2

3 Answers3

0

please add this to your css you can use z-index according to you.

#header {position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index:999!important;
}
IiroP
  • 1,102
  • 2
  • 10
  • 14
Sumit Kumar
  • 493
  • 2
  • 5
  • 16
0

try this css

  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
0

This is due to transform: translate3d(0, 0, 0); on the parent <div class="off-canvas panelwrap" role="panel-wrap">. Take a look here to fix problem : 'transform3d' not working with position: fixed children