[Solved] bootstrap fixed nav in single page site links issue

What you’re trying to achieve here is impossible without Javascript. You’ve changed the scrollTop but you need to do it after some milliseconds to get it working, e.g: $(“.nav a”).click(function(){ setTimeout(function() { $(window).scrollTop($(window).scrollTop() – 50); }, 10); }); If you don’t want to wait those milliseconds, you can also prevent the default behavior and simulate … Read more

[Solved] Custom thumbnail grid 3 columns? [closed]

like this? or you want the image fill the div?: <div class=”col-md-4 no-pad”> <img class=”img-responsive” src=”https://placehold.it/1280×640/eee”> </div> <div class=”col-md-4 no-pad”> <img class=”img-responsive” src=”https://placehold.it/1280×640/eee”> </div> <div class=”col-md-4 no-pad”> <img class=”img-responsive” src=”https://placehold.it/1280×640/eee”> </div> .no-pad{ padding-left:0px; padding-right:0px; height:381px; } .no-pad img{ width:100%; height:100%; } 3 solved Custom thumbnail grid 3 columns? [closed]

[Solved] Bootstrap toggle doesn´t work when a link is clicked

Having the menu collapse when a link is clicked is not the default functionality of the expand/collapse menu with bootstrap. If you want it to function that way, you have to bind the hide function .collapse(‘hide’) to the click action for those links. You can do so by including this: jQuery(function($){ $(‘.navbar-default .navbar-nav > li … Read more