If you're interested in checking out the documentation page I'm working on, you can visit it here.
<div class="doc-sidebar col-md-3 col-12 order-0 d-none d-md-flex">
<div id="doc-nav" class="doc-nav">
<nav id="doc-menu" class="nav doc-menu flex-column sticky">
<a class="nav-link scrollto" href="#download-section">Download</a>
<a class="nav-link scrollto" href="#installation-section">Installation</a>
<nav class="doc-sub-menu nav flex-column">
<a class="nav-link scrollto" href="#step1">Step One</a>
<a class="nav-link scrollto" href="#step2">Step Two</a>
<a class="nav-link scrollto" href="#step3">Step Three</a>
</nav><!--//nav-->
</nav><!--//doc-menu-->
</div>
</div><!--//doc-sidebar-->
Right now, the sidebar disappears when viewed on a mobile device, but I want to keep it visible even on smaller screens. The idea is to have the rectangular sidebar overlay the text below it, similar to this example:
https://i.sstatic.net/GpV40.png
Do any of you know how I can modify the code to achieve this effect? Afterwards, I plan to add a toggle button using jQuery to show/hide the sidebar on mobile (I already have an idea for that).