Currently, I am facing a challenge with my project as the dropdowns on the menu are not functioning properly. Despite having all the necessary files included, it seems like there might be an issue within my code.
You can view the page here: (please try the dropdown on the right side of the menu. Ignore any browser warnings due to pending certificate approval.)
Below is the snippet of code responsible for the dropdown:
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown>
Account
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>hi</li>
</ul>
</li>
I appreciate any help in resolving this issue. Thank you!