PDA

View Full Version : space between <tr>'s


thickandthin
02-14-2003, 10:02 PM
Ok, go to http://www.vc-source.com/car%20creators/index.html I have a logo and 2 button things why is there a space between them though?

redhead
02-14-2003, 10:06 PM
if you put that table all on one (1) line it should work without anyspace... does that help? :thumbsup:

Stoffel
02-15-2003, 12:01 AM
I guess the problem is with the little space between toplinks and buttonblank.

First of all, there is something wrong with your construction

<img src="buttonblank.gif" src="toplinks.gif" width=175 height=25 alt"" border=0>

This should be

<img src="buttonblank.gif" width=175 height=25 alt"" border=0>


Then if u use the gif files as a background of the <td> there won't be any space between those two images.

something like this

...
<tr>
<td width=175 height=25 align="center" background="toplinks.gif">
</td>
</tr>
<tr>
<td width=175 height=25 align="center" background="buttonblank.gif">
</td>
</tr>
...


Hope this will help u

thickandthin
02-15-2003, 04:28 AM
thank you both very much!