View Single Post
Old 11-25-2004, 08:56 AM  
sarettah
see you later, I'm gone
 
Industry Role:
Join Date: Oct 2002
Posts: 14,125
The logo is tiling like that because you have it as a background image in the table element with a column span of 3 columns, so the page is doing exactly what you told it to do

<td colspan="3" height="143" width="700" background="title.jpg" align="right" style="padding-right:25;padding-top:41;" valign="top">

A quick fix is to move it out of there and put it in it's own row directly above that line:

<tr>
<td>
<img src="title.jpg">
</td>
</tr>
<tr>
<td colspan="3" height="143" width="700" align="right" style="padding-right:25;padding-top:41;" valign="top">

edited in: That solution will put the tittle to the left of the page.
Then play with it from there.
__________________
All cookies cleared!

Last edited by sarettah; 11-25-2004 at 08:58 AM..
sarettah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote