I am currently working on enhancing my navigation bar with a dropdown menu using Bootstrap. However, I have encountered an issue where one of the items in the menu is not displayed properly.
If you would like to see the full HTML and CSS code, you can view it on this jsfiddle link.
Below is the code snippet that I am using to create the dropdown menu:
<div class="dropdown">
<div class="animMenu dropdown-toggle" id="imgMenu" data-toggle="dropdown">
<div class="menuBar1"></div>
<div class="menuBar2"></div>
<div class="menuBar3"></div>
</div>
<ul class="dropdown-menu dropdown-menu-right">
<li><a href="#">Backup Assistant</a></li>
<li><a href="#">Settings</a></li>
</ul>
</div>
To access the dropdown menu, simply click on the icon with the 3 bars.
The animMenu div contains 3 bars that transform into a cross symbol when clicked, accompanied by an animation effect. It stands out from the other icons as it's not a typical image.
If you have any suggestions on how I can position the menu below the button correctly, please let me know. I've attempted adding 'btn' to the toggle classes, but it doesn't seem to resolve the issue.