Ища уже подходящий ответ, я обнаруживаю, что запрашиваю помощь в совершенно новой теме.
У меня есть пункт меню в панели навигации Bootstrap.Он выпадает и отображает 3 элемента и ниже этих 2 подменю.Однако второе подменю отображает содержимое первого подменю.Я переключаю порядок подменю, и поведение во втором подменю было таким же, что и содержимое первого.
@*//////////"MORE" ON NAVBAR//////////*@
<div>
<a class="nav-link text-dark dropdown-toggle" style="font-weight:bolder;" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
More
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="@(pageRoute=="/docs/Index" ? "nav-link text-info" : "nav-link text-dark")" style="font-weight:bolder;" asp-area="" asp-page="/docs/Index">CEU Process</a>
<a class="@(pageRoute=="/FAQs/FAQs" ? "nav-link text-info" : "nav-link text-dark")" style="font-weight:bolder;" asp-area="" asp-page="/FAQs/FAQs">FAQs</a>
<a class="@(pageRoute=="/MeetingSchedule/Index" ? "nav-link text-light" : "nav-link text-dark")" style="font-weight:bolder;" asp-area="" asp-page="/MeetingSchedule/Index">Meeting Schedule</a>
@*/////ADMIN SUBMENU/////*@
<a class="nav-link text-dark dropdown-toggle" style="font-weight:bolder;" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Admin
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="@(pageRoute=="/Login/Login" ? "nav-link text-info" : "nav-link text-dark")" style="font-weight:bolder;" asp-area="" asp-page="/Login/Login">Login</a>
<a class="@(pageRoute=="/Login/Login" ? "nav-link text-info" : "nav-link text-dark")" style="font-weight:bolder;" asp-route-logoff="true" asp-area="" asp-page="/Login/Login">Logoff</a>
<a class="@(pageRoute=="/Accounts/Index" ? "nav-link text-info" : "nav-link text-dark")" style="font-weight:bolder;" asp-area="" asp-page="/Accounts/Index">Accounts</a>
</div>
@*/////ABOUT SUBMENU/////*@
<a class="nav-link text-dark dropdown-toggle" style="font-weight:bolder;" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
About
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="@(pageRoute=="/BoardMembers/Index" ? "nav-link text-info" : "nav-link text-dark")" style="font-weight:bolder;" asp-area="" asp-page="/BoardMembers/Index">Board Members</a>
<a href='@Url.Content("~/docs/OESAC_ByLaws.pdf")' class="nav-link text-dark" style="font-weight:bolder;">ByLaws</a>
<a class="@(pageRoute=="/Misc/History" ? "nav-link text-info" : "nav-link text-dark")" style="font-weight:bolder;" asp-area="" asp-page="/Misc/History">History</a>
<a href='@Url.Content("~/docs/policymanual.pdf")' class="nav-link text-dark" style="font-weight:bolder;">Policy Manual</a>
</div>
</div>
</div>