My HTML menu was functioning perfectly with specific CSS styles, until I decided to add a Bootstrap reference in the header:
New Link Added
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
After adding this Bootstrap reference, the dropdown menu under "File" stopped working completely... Interestingly, Bootstrap was included for a different purpose (DataTables), but that's beside the point.
Where did I go wrong?
Your assistance would be greatly appreciated.
Thank you.
Original Code, excluding Bootstrap:
/*CSS code here*/
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- HTML code here -->
Code with Bootstrap included:
/*CSS code here including Bootstrap styles*/
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<!-- HTML code here -->