One issue I am facing is with my layered navigation setup.
https://i.sstatic.net/xyz123.png
Whenever I click on two items that have children, both of them remain open causing the menu to get a scrollbar. However, I do not want to hide the scrollbar.
https://i.sstatic.net/abc456.png
Is there a way to automatically close one item when another is clicked?
Below is a snippet from my menu:
<li class='nav-item' data-toggle='tooltip' data-placement='right' title='Stock Management'>
<a class='nav-link nav-link-collapse collapsed' data-toggle='collapse' href='#collapseMulti33' data-parent='#exampleAccordion'>
<i class='fas fa-fw fa-lock'></i>
<span class='nav-link-text'>Admin</span>
</a>
<ul class='sidenav-second-level collapse' id='collapseMulti33'>
<li>
<a href='/admin/settings.php'>Settings</a>
</li>
<li>
<a href='/admin/logs.php'>Logs</a>
</li>
<li>
<a href='/monitor/index.php?disp=bootstrap'>System Information</a>
</li>
</ul>
</li>