I need to display two dropdown menus side by side in a preheader section. Here is the current code snippet:
<a class="nav-link dropdown-toggle" href="<?php echo $baseurl;?>verification" data-toggle="dropdown" role="button">Verification</a>
<ul class="dropdown-menu" style="background-color: #000080;">
<li class="nav-item"><a class="nav-link" href="<?php echo $baseurl;?>verification/certificates">Verify Certificates</a></li>
<li class="nav-item"><a class="nav-link" href="<?php echo $baseurl;?>verification/membership">Verify Membership</a></li>
</ul>
<a class="nav-link2 dropdown-toggle" href="<?php echo $baseurl;?>opportunities" data-toggle="dropdown" role="button">Opportunities</a>
<ul class="dropdown-menu" style="background-color: #000080;">
<li class="nav-item"><a class="nav-link2" href="http://robotics.uiu.ac.bd/form/wanted_graphicdesigner">Graphic Designer Wanted</a></li>
</ul>
However, I am facing an issue where the second dropdown menu is not functioning properly and shows the contents of the first dropdown. Ideally, the second dropdown should display "Graphic Designer Wanted," but it displays "Verification" instead. What could be causing this problem? How can I resolve this issue by assigning a unique identifier?