Reputation: 418
I got an issue with bootstrap and CSS and js the content of the page are not been pushed to the right and left when sidebar are open or close the following are the full code here is my jsfiddle i think it's js problem i am almost sure and i am not good at, So please any edit i am working with bootstrap and html and css most of the project
UPDATE: jsfiddle is updated and menu click is working fine in my pc the issue is moving and mouse start not to copy fine
and here is an example of the same idea I am trying to make link the following is the js code
$('[data-toggle=offcanvas]').click(function() {
$('.row-offcanvas').toggleClass('active');
$('.collapse').toggleClass('in').toggleClass('hidden-xs').toggleClass('visible-xs');
});
$(document).ready(function(){
// Initialize Tooltip
$('[data-toggle="tooltip"]').tooltip();
});
Upvotes: 0
Views: 121
Reputation: 71
I think you're suffering from multiple problems because your code isn't clean. Your menu might not be working because you've misspelled "javascript.js" in your script tag, and this shouldn't be in the position it currently is either. You have some issues in your CSS too.
I'd suggest going through your files and cleaning them up, then seeing if your problems are solved.
Upvotes: 1