Answer the question
In order to leave comments, you need to log in
How to pin a menu?
How can I pin the menu so that it stays visible on top when swiping?
cosmofest.kvantorium48.ru
Answer the question
In order to leave comments, you need to log in
var navPos = $('#main-navigation').offset().top;
$(window).scroll(function(){
if ($(this).scrollTop()>=navPos) {
$('#main-navigation').addClass('fixed');
} else {
$('#main-navigation').removeClass('fixed');
}
});
#main-navigation.fixed {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10;
margin-top: 0;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question