I have a page which displays photos and I want to have 2 pieces of text at the top of the page. At the top-left I want it to say "My photos", and on the top-right I want it to say "Remember to scroll the panoramas".
I want both of these pieces of text on the same line to conserve screen space, so I thought of using a table. Here is the code I tried:
---------------------
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>My photos</td>
<td align="right">Remember to scroll panoramas</td>
</tr>
</table>
---------------------
This joins the 2 pieces of text together, which is not what I want. I want the text on the right to move as the browser is resized so it is as far away from the "My photos" text but is still visible at different browser sizes.
Any ideas on how to fix this?
Thx,
May
I want both of these pieces of text on the same line to conserve screen space, so I thought of using a table. Here is the code I tried:
---------------------
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>My photos</td>
<td align="right">Remember to scroll panoramas</td>
</tr>
</table>
---------------------
This joins the 2 pieces of text together, which is not what I want. I want the text on the right to move as the browser is resized so it is as far away from the "My photos" text but is still visible at different browser sizes.
Any ideas on how to fix this?
Thx,
May