I'm having a headache with the Facebook button. I'm attempting to include all social buttons in one unordered list with "display: inline;" set on the list item elements. Check out the code below:
<ul id="social" class="grid_3 alpha">
<li><a href="http://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></li>
<li><div class="g-plusone" data-size="medium" data-count="false"></div></li>
<li><iframe src="http://www.facebook.com/plugins/like.php?locale=en_US&href&send=false&layout=button_count&width=100&show_faces=false&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe></li>
</ul>
Here are the results when viewed in Safari:
and this is how it looks in Firefox:
Can anyone explain why they aren't displaying on the same line in Safari?
Appreciate any assistance!