I am trying to use three different FontAwesome icons in an inline-block list. Initially, I set the font size to 24px/1 and then modified it to 32px/1 for all three. However, only the first icon seems to have resized properly, while the others are misaligned and overlapping the text below. Despite several attempts to revert them back to their original size, clearing cache, history, and testing in Chrome, Firefox, and Safari, the issue persists as shown in the screen capture. Unbalanced icons
How can I fix this so that they are all the same size and aligned correctly like the last two icons?
Here is the HTML code.
<div class="sidebar-social-navigation">
<ul class="social-icons">
<li class="element facebook"><a href="https://www.facebook.com/accessible.techcomm/"><span class="facebook" aria-labelledby="Facebook"></span></a><br /><a href="https://www.facebook.com/accessible.techcomm/">Facebook</a></li>
<li class="element twitter"><a href="https://twitter.com/AccessTechcomm"><span class="twitter" aria-labelledby="Twitter"></span></a><br /><a href="https://twitter.com/AccessTechcomm">Twitter</a></li>
<li class="element rss"><a href="https://accessible-techcomm.org/feed/"><span class="rss" aria-labelledby="RSS"></span></a><br /><a href="https://accessible-techcomm.org/feed/">RSS</a></li>
</ul>
</div>
And here is the CSS provided for these icons.
.sidebar-social-navigation {
margin: 0 0 5px 0;
padding: 0;
}
/* Rest of the CSS styling */
UPDATE: