I am currently making my first website and I am having problems with my footer. I am using a fixed footer but once I start to scale down to mobile the footer goes over the content. Is there any suggestions on how I can fix this. Here is my Code:
this is my mark-up:
footer {
clear: both;
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
background-color: rgba(48, 57, 148, 0.8);
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<footer>
<div class="socialmedia">
<a href="https://www.linkedin.com/in/andrea-de-roeck-b6b47164/"><span class="hidden">Linkedin</span><span class="fab fa-linkedin" aria-hidden="true"></span></a>
<a href="https://www.instagram.com/dreaderoeck/"><span class="hidden">Instagram</span><span class="fab fa-instagram" aria-hidden="true"></span></a>
<a href="mailto:deroeck.andrea@gmail.com"><span class="hidden">Email</span><span class="fas fa-envelope-square" aria-hidden="true"></span></a>
</div>
</footer>
Any suggestions would be greatly appreciated thank you :)