Sticky Header Animation

Is it possible to eliminate the “animation” and simply have the sticky header pop up immediately? I don’t like how it gradually slides down as you scroll down the page. I’d rather have it pop up as soon as scrolling occurs.

My webpage that I’m testing with is 24hourdentalcare.com/privacy-policy. Please note that I have the bars not showing on desktop size, only laptop and down.

Hello There,

Thanks for writing in! The animation is because of the css transform. To remove the animation is to remove the css transform. To resolve your issue, please add the following CSS code in the X > Launch > Theme Options > Global CSS (http://prntscr.com/evui3r)

body .hm4.x-bar.x-bar-top.x-bar-h.x-bar-absolute.x-hide-xl.x-bar-outer-spacers.x-bar-fixed {
    transform: none !important;
}

Hope this helps. Please let us know how it goes.