I've been teaching myself how to create responsive websites using Zurb's Foundation 6. I've successfully built a simple website, but I'm facing an issue with spacing at the bottom of the page.
The problematic areas are the "pagination" and "footer" sections of my page.
You can view the site at test.allvixen.com and here's a snippet of my code:
<div class="large-12 columns">
<center>
<nav class="pagination">
<ul>
... (pagination code)
</ul>
</nav>
</div>
<div class="large-12 columns">
<div id="footer">
© 2013 - <a href="http://allvixen.com/">allvixen.com</a>
</div>
</center>
</div>
I'm struggling to reduce or eliminate the gap between the pagination and copyright notice. Additionally, there seems to be excessive space below the copyright notice.
If anyone could provide guidance on what went wrong or share resources for solving this issue, I would greatly appreciate it!