I've been working on a webpage design using the Bulma CSS framework.
Everything seems to be going smoothly, but I'm encountering an issue when trying to add a footer to my page - it's not staying at the bottom.
Should I create custom CSS for this or is there something wrong with the HTML code?
Here's the code snippet:
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-three-quarters">
<nav class="panel">
<p class="panel-heading">
Category #1
</p>
<div class="panel-block">
<p>Test description</p>
</div>
</nav>
<nav class="panel">
<p class="panel-heading">
Category #2
</p>
<div class="panel-block">
<p>Test description</p>
</div>
</nav>
<nav class="panel">
<p class="panel-heading">
Category #3
</p>
<div class="panel-block">
<p>Test description</p>
</div>
</nav>
</div>
<div class="column">
<nav class="panel">
<p class="panel-heading">
Latest statistics
</p>
<div class="panel-block">
<p>URLs will go here, in a list format.</p>
</div>
</nav>
</div>
</div>
</div>
</div>
<div class="hero-foot">
<p>Why aren't you at the bottom of the <b><s>FILLING PAGE!?</s>s></b></p>
</div>
</section>