Support Team
posted this
09 January 2019
The plugin is blocking jQuery that is responsible for making the menu stay fix exactly on scroll.
I can provide CSS code that makes the header sticky but it will be always sticky and fixed (regardless on scroll or not) and without that jQuery working you will see 50px gap on top when scrolling:
#section9 {
position: fixed;
top: 0;
width: 100%;
background-color: white;
z-index: 99999;
margin-top: 50px;
}
I can only suggest making entire header (along with the blue line sticky) to avoid that gap, or moving the top line above so there is no gap.
Gina
Themler Support
The plugin is blocking jQuery that is responsible for making the menu stay fix exactly on scroll.
I can provide CSS code that makes the header sticky but it will be always sticky and fixed (regardless on scroll or not) and without that jQuery working you will see 50px gap on top when scrolling:
#section9 {
position: fixed;
top: 0;
width: 100%;
background-color: white;
z-index: 99999;
margin-top: 50px;
}
I can only suggest making entire header (along with the blue line sticky) to avoid that gap, or moving the top line above so there is no gap.
Gina
Themler Support