[Solved] Responsive design not working on mobile

If I’m understanding correctly, You need a <div class=”row” before col-sm-4. EDIT: From your screenshot, I don’t see a container, which you will need. Maybe it is already included but I cant see it. You need to have <div class=”container”> <div class=”row”> <div class=”col-sm-4″> Try removing the other divs first to see if that fixes … Read more

[Solved] Bootstrap dropdown menu links not clickable

You have errors in your code: Uncaught TypeError: Cannot read property ‘top’ of undefined $(“.links a, .nav a”).click(function (event) { event.preventDefault(); var dest = 0; // Error here // vvvv if ($(this.hash).offset().top > $(document).height() – $(window).height()) { dest = $(document).height() – $(window).height(); } else { dest = $(this.hash).offset().top; } $(‘html,body’).animate({scrollTop: dest}, 800, ‘swing’); }); 1 … Read more

[Solved] Css image positions [closed]

Use display:flex; to set them in same line and set margin-top to wanted img .wrap{ display:flex; } img{ width:337px; height:235px; padding: 5px; } .down{ margin-top: 100px; } <div class=”wrap”> <img src=”https://material.angular.io/assets/img/examples/shiba1.jpg”/> <img src=”https://material.angular.io/assets/img/examples/shiba1.jpg” class=”down”/> <img src=”https://material.angular.io/assets/img/examples/shiba1.jpg”/> </div> With boostrap 3 as your comment: See here:https://jsfiddle.net/bfcs2670/2/ .down{ margin-top: 100px; } <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css”> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script … Read more