I\'m trying to open a modal window from navigation bar. I\'ve followed some good tutorials and once I pressed my link a modal opened, problem is model window looks like not
I am experiencing this same issue. The only way I could fix it was by adding a jQuery click on the link in the navbar to override the bootstrap default. Like so:
$("#navbar_register_btn").on("click",function(e){
e.preventDefault();
$('#basicModal').modal('show');
})
You will need to give your link in the navbar an id of "navbar_register_btn" in this case.