Edrol97
Silver Coder
Hi all, I have this code I have added to my footer. Two social media icons are correct, and one is not. How do I position the Instagram logo correctly?
HTML:
<link rel="stylesheet" href="style.css">
<a href="https://www.facebook.com/house.of.lord.illustration1/" target="_blank"><img src="img/background/Facebook Logo.png" class="fa fa-facebook"></a>
<a href="https://twitter.com/eliotlord1" target="_blank"><img src="img/background/Twitter%20Logo.png" class="fa fa-twitter"></a>
<a href="https://www.instagram.com/house_of_lord_illustration/?hl=en" target="blank"><img src="img/background/Instagram logo.png" class="fa fa-instagram"></a>
CSS:
.fa {
padding: 20px;
font-size: 30px;
width: 80px;
text-align: center;
text-decoration: none;
border-radius: 50%;
padding-bottom: 20px;
bottom: 150px;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #2e73b7;
color: white;
}
.fa-twitter {
background: #429bd6;
color: white;
}
.fa-instagram {
background: #ffffff;
}