I am experiencing an issue where the button meant to reveal a dropdown menu is actually hiding the dropdown button itself. Interestingly, another dropdown menu in the same navigation works perfectly fine.
<div class="side-nav pull-right">
<div class="dropdown">
<button type="button" class="profile dropdown-toggle" data-toggle="dropdown" id = "dropdownMenuButton" aria-haspopup="true" aria-expanded="false">Hello Arthur K. <img src = "images/triangle.png" alt =""/> </button>
<div class="dropdown-menu" role="menu" aria-labelledby="dropdownMenuButton">
<a href="#" title="Users">Users</a>
<a href="#" title="Snippets">Snippets</a>
<a href="#" title="Translations">Translations</a>
</div>
</div>
<a href="#" class="profile">My account</a>
</div>