I am currently facing an issue while attempting to integrate both bootstrap and twitter bootstrap simultaneously. Unfortunately, I have been unable to make them work together effectively. Is it even possible for them to be used in conjunction? You can find the js Fiddle demonstration here: https://jsfiddle.net/paralaxwombat/v7hpoc6m/4/
There are two sets of bootstrap call lines included:
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
Removing one set affects the functionality - if the top set is removed, the nav bar works but the bottom doesn't, and vice versa.
I am in search of a potential workaround or solution to this compatibility challenge.