Hi there, I have a quick question for the experts out there. I'm new to all of this so please bear with me :)
I'm attempting to center an inline social sharing div on my website, but it's proving to be quite challenging. The div is nested within other centered divs, yet it stubbornly remains aligned to the left side.
Below is the HTML code snippet:
#share-buttons img {
width: 35px;
padding: 5px;
border: 0;
box-shadow: 0;
display: inline;
text-align: center;
}
<div id="share-buttons">
// Share Button Links Here
</div>
While I can easily center them, they end up stacking on top of each other. It's probably a simple fix, but I'm struggling to figure it out.
Any help or guidance would be greatly appreciated!