I'm trying to add social media buttons to an already established footer
asked 8 hours ago by @qa-lcq5p0syv8uivueoopbl 0 rep · 101 views
I am trying to add 5 social media buttons to the footer of my website, which already has 3 established columns for the words. I'm not sure if these columns are 'correct', but they work, so I haven't been messing with them.
The icons I want to sit under 'contact me' visually, but how that's set up I need them to go where the 5 are currently sat in the code.
Is it possible to have the 5 icons sit closely together in the right spot without messing with the current layout? I can get 1 in fine, but the rest mess up the layout.
Thanks.
It should look something like this:
footer {
background-color: #212222;
color: #ffffff;
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #77eefa;
background-color: transparent;
text-decoration: none;
}
a:active {
color: #77eefa;
background-color: transparent;
text-decoration: none;
}
.two-column-layout {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
#ex1 {
margin-inline: 35px;
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<footer>
<div id="ex1" style="text-align: left;">
<img src="/footerlogo.png" width="120px" height="100px">
<div class="two-column-layout">
<a style="margin-bottom: 5px;" href="index.html">HOME</a>
<a href="discography.html">DISCOGRAPHY</a>
<a style="margin-left: 125px" href="contact-me.html">CONTACT ME</a>
<a style="margin-bottom: 5px;" href="about-me.html">ABOUT ME</a>
<a href="sound.html">THE KRIS NOCK BIG BAND</a>
<a href="https://www.linkedin.com/in/jess-wright-audio/" class="fa fa-linkedin"></a>
<a href="https://www.instagram.com/jess_wright_audio/" class="fa fa-instagram"></a>
<a href="https://soundcloud.com/jess-wright-372007340?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing" class="fa fa-soundcloud"></a>
<a href="https://jesswrightmusic.bandcamp.com/" class="fa fa-bandcamp"></a>
<a href="https://www.youtube.com/@baequeencat" class="fa fa-youtube"></a>
<a style="margin-bottom: 5px;" href="services.html">SERVICES</a>
<a href="crew.html">FESTIVALS</a>
</div>
<p style="color:#ffffff" align="center">Jess Wright Audio LTD.</p>
</div>
</footer>