That tables in bad shape. You should loose the height= in the table tag. Also, at the end, your </center></table> tags need to be reversed to match their order where the table starts.
You're problem is with column spans, and it's complicated to explain, but basically, I believe you're thinking of it as a single column table with some rows containing two columns when actually, it's a 2 column table with some rows containing a single cell that spans two columns. so here's a code example.
<table align="center" width="740" border="0" cellpadding="0" style="border-collapse: collapse" > <tr> <td colspan="2"><strong><font size=5>Centro Bautista de Alabanza y Adoracion </font></strong> </td> </tr> <tr> <td colspan="2">956-792-2630 (Phone) </td> </tr> <tr> <td bgcolor="#0033CC" colspan="2"><font color="#FFFFFF">Addresses</font></td> </tr> <tr> <td width="50%"><strong><font color=#0033CC>Mailing Address</font></strong></td> <td width="50%"><strong><font color=#0033CC>Physical Address</font></strong></td> </tr> <tr> <td width="50%">223 Constellation</td> <td width="50%"> </td> </tr> <tr> <td width="50%">Pharr, TX 78577</td> <td width="50%"> </td> </tr> <tr> <td bgcolor="#0033CC" colspan="2"><font color="#FFFFFF">Pastor</font></td> </tr> <tr> <td colspan="2"><strong>David Magallan, Pastor</strong></td> </tr> <tr> <td bgcolor="#0033CC" colspan="2"> </td> </tr> <tr> <td colspan="2"><strong><a href="mailto:xxx@aol.com"> xxx@aol.com</a></strong><strong></strong></td> </tr> <tr> <td colspan="2"> </td> </tr> </table> |
The address rows have two columns. The size of those columns is governed by the size of the table in most browsers. To move them closer together, either get rid of the width=740 in the table tag
or
change those address rows to have 3 columns each with a width of 33% and just use the first two columns. You'd also need to change the rows with a colspan=2 to colspan=3