Bootstrap 3 Navbar Doesn't Work Anymore
Well... yesterday it worked, tomorrow dont... it's true! On console it gives this message: Error: Bootstrap dropdown require Popper.js (https://popper.js.org) The page is loaded b
Solution 1:
Instead of the CDN that you are using in your <link>
tag, use this link instead
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
If you try to go to this link, http://getbootstrap.com/dist/css/bootstrap.min.css
you will see that in the very beginning, it says: Bootstrap v4.0.0-beta
. So, use the link I've provided you, instead of the one in your <head>
.
Post a Comment for "Bootstrap 3 Navbar Doesn't Work Anymore"