I'm looking to design a webpage with a side bar table of contents (TOC) similar to the one found here:
The current placement of the TOC on the HTML page is as follows:
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul style="list-style-type:none">
...
<li><a href="#orgbdecee3">Topic 1</a></li>
</ul>
</div>
Any tips on how I can create a CSS file that will transform this TOC into a sidebar?