Here is my code:
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr align="center">
<td align="left" width="180">
<a href="http://www.blabllablbalbla.com/"> <img border="0" alt="bablablabla"
height="" src="/include/img/logo-beta.png"></img> </a>
</td>
<td align="right"><a href="http://support.blablalblbalabl.com">Help Center</a> | <a
href="/auth/login">Sign In</a>
</td>
</tr>
<tr>
whyyyyyyyy does this appear on top???!
</tr>
</table>
and here is my js fiddle http://jsfiddle.net/PQZTL/1/
I want the text to be below the broken image.
Can somebody explain this to me?
<tr>
, you need to have a<td>
inside. Also, you are using some inlined parameters in your elements that have been replace by CSS equivalents. Take a good read at www.w3schools.com on both HTML and CSS. – Pisces