I've got a navbar that I'm currently trying to add submenus to. The styling and such applies from bootstrap, but it seems like some of the actions supplied by bootstrap aren't actually applying to the header.
On bootstrap's website, they have this snippet:
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true"> <span class="nav-label">Services</span> <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Service A</a></li>
<li><a href="#">Service B</a></li>
<li class="dropdown-submenu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> <span class="nav-label">Service C</span><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Service C1</a></li>
<li><a href="#">Service C2</a></li>
<li><a href="#">Service C3</a></li>
<li><a href="#">Service C4</a></li>
<li><a href="#">Service C5</a></li>
</ul>
</li>
</ul>
</li>
</ul>
I've applied this, and rather the menu looking like this:
It actually ends up looking like this (minus the color styling):
Notice how the caret is positioned and rotated differently, and the hover does not cause the submenu to pop up.
I've inspected all of my custom css and there is nothing modifying the submenu classes. This makes me thing for some reason something's going on, and I'm all out of ideas.
If I copy the css from the bootstrap example exactly, then the submenu then shows up, however I'm already loading in bootstrap, so this shouldn't be necessary... Here's how I'm loading it:
<head>
<link rel="stylesheet" href="/assets/bootstrap-3.3.7-dist/css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="/assets/bootstrap-3.3.7-dist/js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="/assets/css/global.css?v=21">
<link rel="stylesheet" type="text/css" href="/assets/css/header.css">
<link rel="stylesheet" type="text/css" href="/assets/css/footer.css">
<link href='https://fonts.googleapis.com/css2?family=Montserrat' rel='stylesheet' type='text/css'>
</head>
The header.css and footer.css have only a few lines in them each, both not relevant to this. And like I said, I already searched through the entirety of global.css and there's nothing related to this there. Just a color attribute here and there.
Obviously the header is bootstrappy in some sense so part of the bootstrap is being applied, but this submenu stuff apparently isn't.
JsFiddle: https://jsfiddle.net/qfLt8h1j/
If anyone has any ideas, that'd be great. I'm at a loss at this point.

