Today I made the decision to utilize bootstrap to create a menu, but unfortunately, I've encountered a strange bug or conflict involving jQuery, potentially the UI, and Bootstrap. If you'd like, you can take a look at the picture provided in the following link:
https://i.sstatic.net/shWHq.png
When I remove the js files from bootstrap, the issue worsens as some sliders vanish. Notably, there is a peculiar quadratic cut that appears on the sliders' handles, along with changes in font where the letters become smaller and closer together. Additionally, there are changes in the text color where previously black text now appears black but slightly more transparent. Despite these challenges, I am eager to continue working with Bootstrap as it will streamline my workflow in the future. For context, here are the libraries I have initialized:
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js">
<script src="jquery-1.11.3.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="jquery-ui-1.11.4.custom/jquery-ui.min.css">
<script src="jquery-ui-1.11.4.custom/external/jquery/jquery.js"></script>
<script src="jquery-ui-1.11.4.custom/jquery-ui.min.js"></script>
Although I referenced these libraries from a w3 tutorial, the same issue persists even when loading from the downloaded Bootstrap on my computer. Therefore, my question is how to effectively debug this problematic outcome. P.S. the navbar is still visible.