I'm experiencing some issues with the footer of my website
I'd like to have the facebook like button, the twitter button and the language selector all aligned at the same level (ie; few px from the bottom of the page). Currently as you can see on the picture all these 3 elements have a different vertical alignment. Could you help me identify and fixing this issue please?
the HTML code:
<div id="footer">
<div id="social"><div class="fb-like" data-href="http://www.gregsitedfds.com" data-send="false" data-layout="button_count" data-width="106" data-show-faces="false" data-font="verdana"></div><a href="https://twitter.com/share" class="twitter-share-button" data-lang="msa">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<span class="languageselector"><a href="fr/" title="Version Française">FR</a> | <a href="en/" title="English Version">EN</a> | <a href="index.htm" title="Norway Version">NO</a></span></div>
the CSS code:
#footer
{
position:fixed;
bottom:0;
color:#333;
left:0;
z-index:999;
width:96%;
text-align:right;
padding:30px 2%;
}
#social
{
position:absolute;
vertical-align:middle;
left:2%;
color:#333;
}