stick menu easy jquery
jQuery(function($) {
$(window).on("scroll", function () {
if ($(this).scrollTop() > 100) {
$("#header").addClass("stickyHeader");
}
else {
$("#header").removeClass("stickyHeader");
}
})
});
@media (min-width: 960px) {
.stickyHeader {
position: fixed;
width: 100%;
background: rgba(71, 61, 132, 0.86);
right: 0;
padding: 15px;
padding-right: 10%;
margin-top: 0px !important;
z-index: 6500 !important;
}
}