I'm having trouble keeping the social media links at the center and bottom of the home page in the "footer". Can someone help me with this?
Below is the CSS code I am currently using:
@import 'http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css';
/* CSS styles here */
If you need to take a look at the full HTML structure, see below:
<!-- Full HTML structure -->
<div id="container">
<header>
<nav>
<!-- Navigation links here -->
</nav>
</header>
<div id="body">
<!-- Parallax sections here -->
</div>
<div class="footer">
<footer>
<nav>
<a class="in ion-social-linkedin" href="https://www.linkedin.com/in/blake-schollmeyer-717a45142"></a>
<a class="git ion-social-github" href="https://github.com/blakeschollmeyer"></a>
</nav>
</footer>
</div>
</div>