Is there a way to align my social icons with the text in the footer? I have attached a Photo of the current footer design along with the HTML and CSS code I've created. Would it be better to place the social icons in a separate div for better positioning control, or should I use positioning elements within the existing structure?
footer {
background: #212529;
color: white;
width: calc(100% - 80px);
margin-left: 80px;
margin-right: -15px;
}
footer a {
color: #fff;
font-size: 14px;
transition-duration: 0.2s;
}
// More CSS styles...
<ul class="social-network social-circle">
// Social icons code
</ul>
<h4>Suivez-Nous</h4>
<footer class="mainfooter" role="contentinfo">
<div class="footer-middle">
// Footer content here
</div>
</footer>