Using Dreamweaver 2019 and bootstrap 4 - trying to get multiple Navbar Dropdowns to work
How can I get three dropdown items in a bootstrap 4 navbar. The below example is for one dropdown in the navbar. It has a id="navbardropdown" so I cannot copy this code therefore for the second or third dropdown , since I cannot repeat the id="navbardropdown" three times in the code.
This is bootstrap 4 dropdown code . Of course I am new to this and working on it all day, so appreciate your help.
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Classes
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Studio Classes</a>
<a class="dropdown-item" href="#">Private Class or Consultation </a>
</div>
</li>
