Just diving into the world of Bootstrap 4 and facing a challenge with my page footer layout. I have a mockup that I'm trying to replicate:
https://i.sstatic.net/pXyMR.png
This is what I've come up with so far:
index.html (snippet):
<!-- footer -->
<hr/>
<div class="container-fluid">
<div class="row">
<div class="col-sm">
<span class="linklist-label">Foobar</span>
<ul class="linklist">
<li><a class="footer-link" href="">Fizz</a></li>
<li><a class="footer-link" href="">Buzz</a></li>
<li><a class="footer-link" href="">Foobar</a></li>
</ul>
</div>>
<div class="col-sm">
...
</div>
<div class="row">
...
+-- insert code here --+
<pre><code>
While making progress, I still have some work ahead of me to reach my goal. Additionally, for responsive design purposes, I want the entire footer to disappear on smaller screens like mobile devices.
If anyone could provide guidance on correcting my layout and achieving the "disappear on small screen" functionality, it would be greatly appreciated!