mobile menu when used for one page
-
There is a bug in the mobile menu (when used as a one page site).
After you click on the section you want to access, it won′t collapse back.This is the solution I found, I post it here in case someone else needs it.
In the file assets/bc-business-consulting.js add this piece of code before the jQuery closure:
if($(window).width() < 950){
$(‘#navbar’).click(function() {
$(“#navbar”).removeClass(“navbar-collapse collapse in”);
$(“#navbar”).addClass(“collapsing”);
});
}
- The topic ‘mobile menu when used for one page’ is closed to new replies.