What is the optimal arrangement for positioning the Google+1 and Facebook Like buttons to ensure they line up neatly?
Currently, the initial element in my body is this heading, which appears at the top of all pages (lightly modified after logging in):
<table align="center" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left">
<g:plusone size="small" href="https://www.apebroker.com/">
</g:plusone>
<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.apebroker.com%2Findex.php&send=false&layout=button_count&width=100&show_faces=false&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
</td>
<td align="left"></td><td align="right">It's more fun after you
<a href="https://www.apebroker.com/loginform.php">login</a>
</td>
</tr>
</table>
I am facing an issue with this layout as it does not appear visually pleasing. I understand that slight variations may occur across different browsers, but there should be a certain level of consistency in appearance.
While the Google button is nicely centered vertically, the Facebook content seems to be positioned at the top of the page with no vertical alignment. See this example for demonstration:
My attempted solution was to add padding:2px;
to the style of the Facebook iframe, which did adjust the positioning slightly. However, it also affected the Google button and caused the heading to expand, impacting the layout of the page.
Although I am not well-versed in iframes, I have been able to navigate through challenges on my own thus far.
Within my global style sheet, I have the following specifications:
body {
margin:0px;
padding:0px;
background-color:#e0e0b0;
color:#302010;
font-family:"Trebuchet MS",Helvetica,Sans-serif;
font-size:100%;
}
I am reluctant to make changes to these styles as they have implications on various elements I do not wish to disrupt. For a detailed look at the complete style sheet and HTML source, you can visit the example page here.
Thank you in advance for any suggestions or insights provided!