My project is built in bootstrap and features a top navigation bar along with a sidebar.
I would like to make the sidebar collapsible, similar to this example:
The only challenge is that the sidebar in my project is positioned on the left side of the page. How can I achieve a collapsible sidebar with as few changes as possible?
HTML:
<div class="col-md-3">
<div class="navbar-default sidebar" role="navigation">
<div class="sidebar-nav">
<ul class="nav" id="side-menu">
<li>...</li>
<li>...</li>
</ul>
</div>
</div>
</div>