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!

Spaces Between Tables....

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I set up my page with 3 tables inside 1 table. That worked out pretty well, with a table of links on both sides of my main table. The problem is.. as the browser gets bigger and bigger, the space between the tables get bigger. I wanted them all to be connected, but this is creating gaps. Can anyone help me with a code I can use to fix this?
 
Hi,

Can you show an example of what you are doing ot the URL, this will help us help you.
greenjumpy.gif
NATE
design@spyderix-designz.com
 
Alright, here's how I set it up.

<table width=100% border=0 cellpadding=0 cellspacing=0>

<td align=left valign=top>
<table width=143 border=0 cellpadding=0 cellspacing=0>
(My TRs and TDs.. images and links..)
</table>
</td>

---gap appears here---

<td align=center valign=top>
<table width=100% border=0 cellpadding=0 cellspacing=0>
(Main Info)
</table>
</td>

---another gap here---

<td align=right valign=top>
<table width=143 border=0 cellpadding=0 cellspacing=0>
(More Links)
</table>
</td>

</table>
 
Hi,

I think I see your problem. First remove un-nessessary spaces, second you have no <TR></TR>'s and third the closing </TD> need to go directly after the last bit of table data, it can't go on the next line without showing a break or a space or gap.

Here is the new code for you to try:

<table width=100% border=0 cellpadding=0 cellspacing=0>
<tr>
<td align=left valign=top>
<table width=143 border=0 cellpadding=0 cellspacing=0>
<tr>
<td>(My TRs and TDs.. images and links..)</td>
</tr>
</table></td>
</tr>

---gap appears here---

<tr>
<td align=center valign=top>
<table width=100% border=0 cellpadding=0 cellspacing=0>
<tr>
<td>(Main Info)</td>
</tr>
</table></td>
</tr>

---another gap here---

<tr>
<td align=right valign=top>
<table width=143 border=0 cellpadding=0 cellspacing=0>
<tr>
<td>(More Links)</td>
</tr>
</table>
</td>
</tr>
</table>

Try that out and see if that works for you.

Hope this helps!
greenjumpy.gif
NATE
design@spyderix-designz.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top