I’m using the Tocbot integration to have Table Of Contents on my posts. I followed the official tutorial on the Ghost website.
However the TOC takes up space on top of the post content instead of appearing on its side.
This is the issue I’m talking about:
Scrolling down is fine and the TOC sticks to the left side, following the content as intended.
This is my post.hbs
file in case it’s relevant:
{{!< default}}
<aside class="gh-toc"></aside> {{! The TOC will be inserted here }}
<div class="content-area">
<main class="site-main">
{{#post}}
{{> content width="wide"}}
{{/post}}
{{#is "post"}}
{{#if @custom.show_related_posts}}
{{> related}}
{{/if}}
{{> comment}}
<script src="https://utteranc.es/client.js"
repo="Zerodya/comments"
issue-term="title"
theme="dark-blue"
crossorigin="anonymous"
async>
</script>
{{/is}}
</main>
</div>
How can I fix this issue?
EDIT: My website here.