Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Space problem in a table...

Status
Not open for further replies.

Paco75

Programmer
Oct 11, 2001
239
US
Hi,

I got a picture separated in two. There is always a space between the top and the bottom of the picture... event if I put the border to 0! The two part of the picture are Pic_Top.gif and pic_Bottom.gif. How can I remove the space to get it look like a single picture?

thanks a lot!


<table border=&quot;0&quot;>
<tr valign=&quot;bottom&quot;>
<td valign=&quot;bottom&quot;><img src=&quot;Pic_Top.gif&quot; border=&quot;0&quot; width=&quot;411&quot; height=&quot;117&quot;></td>
<td valign=&quot;bottom&quot;>
<table border=&quot;0&quot; align=&quot;center&quot;>
<tr>
<td><img src=&quot;pic1.gif&quot; border=&quot;0&quot; width=&quot;90&quot; height=&quot;112&quot; align=&quot;left&quot;></td>
<td><div align=&quot;center&quot;><h1><font size=&quot;7&quot;>Title</font></h1></div></td>
<td><img src=&quot;pic2.gif&quot; border=&quot;0&quot; width=&quot;90&quot; height=&quot;112&quot; align=&quot;right&quot;></td>
</tr>
</table>
</td>
</tr>
<tr valign=&quot;top&quot;>
<td valign=&quot;top&quot;><img src=&quot;pic_Bottom.gif&quot; border=&quot;0&quot; width=&quot;411&quot; height=&quot;253&quot;></td>
<td valign=&quot;top&quot;>
<div style=&quot;text-align:justify;&quot;>
<font size=&quot;4&quot;>Main text here<br></font>
</div>
</td>
</tr>
</table>
 
just this two properties to the main table...

cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;


good luck
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top