I am coding the following in Bootstrap 3.0 and MVC 5. I am trying to get Submenus to work. I referenced navbar documentation but I can't get the Billing and Payment structure to be a sub dropdown menu with this structure:
Account Info
License Details
Billing and Payment
Invoices
Payments
Billing
Users
User Settings
Here is my HTML. I need to replace the anchor tag on Billing Payment. What do I put in its place?
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Free Trial Setup", "Trial", "Home")</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Account Info</a>
<ul class="dropdown-menu">
<li>@Html.ActionLink("License Details", "License", "Home" )</li>
<li class="dropdown-submenu"></li>
<a href="#">Billing and Payment</a>
<li>@Html.ActionLink("Invoices", "Invoices", "Home")</li>
<li>@Html.ActionLink("Payments", "Payments", "Home")</li>
<li>@Html.ActionLink("Billing Information", "Billing", "Home")</li>
</ul>
<li>User Settings</li>
</ul>
</li>
</ul>
@Html.Partial("_LoginPartial")
</div>
</div>