Link to home
Start Free TrialLog in
Avatar of tprofits
tprofits

asked on

Why won't my html tables align?

Why won't my HTML tables align?  Should be a 4x4 table with columns of 227px, 73px, 151px, 149px.
See below:
http://www.gimmecharge.net/v/vspfiles/email_templates/email/GimmeChargeEmail.html
Avatar of COBOLdinosaur
COBOLdinosaur
Flag of Canada image

So you are using a 20th century layout technique an wonder why it has a problem in 21st century browsers?

The page looks okay to me in Firefox, what is the issue?


Cd&
The fact that only 2 of the columns have a defined width probably has something to do with whatever is wrong.

Cd&
Avatar of tprofits
tprofits

ASKER

Not really much help.
The middle right image should butt up to the middle left image.
ASKER CERTIFIED SOLUTION
Avatar of HainKurt
HainKurt
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
please post screenshot & show what what is wrong... we may not see what you see... I am using chrome for example... what browser are you using...

But before you can just convert it into 3 tables and remove colspans all together...

or use colgroup

<table width=600>
<colgroup><col width=227><col width=73><col width=151><col width=149></colgroup>
<tr><td colspan=2>..</td><td colspan=2>..</td></tr>
<tr><td>..</td><td>..</td><td>..</td><td>..</td></tr>
<tr><td>..</td><td colspan=2>..</td><td>..</td></tr>
</table>

and remove widths from all td's...
Multiples tables works nicely.  Thanks.