Trying to implement a justified bootstrap nav using bootstrap 3.3?
If you want to see a working demo, click the link below:
After downloading and exporting the code, some users have faced difficulties making the navigation work locally. If you are encountering similar issues, check out a sample code snippet below:
I even tried creating a fiddle but it seems like something is not quite right. Can someone help me identify the problem?
The navigation is unresponsive...I'm unable to navigate from one pane to another.
For reference, here is a part of the CSS and script used in the code:
body {
padding : 10px ;
}
#exTab1 .tab-content {
color : white;
background-color: #428bca;
padding : 5px 15px;
}
#exTab2 h3 {
color : white;
background-color: #428bca;
padding : 5px 15px;
}
...
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
...
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
...