Something wrong with table

liunx

Guest
I just made this page today and there is a problem in the tables. The first two cloumns are an uneven width. There are four tables in a row and the second one's width is supposed to be 190 but it is smaller. The first column is taking up space that is supposed to be the second ones.<br />
<br />
here is a link to my site: <!-- m --><a class="postlink" href="http://www.escalix.com/freepage/ohapow/">http://www.escalix.com/freepage/ohapow/</a><!-- m --><!--content-->Change the widths on all 4 columns from "190" to "25%".<br />
<br />
There's no need to absolutely define the width on those columns when you've already done so with the table. And, since you know they have to be evenly spaced, you can just make the width 25%. The same would be true if you had 3 columns. Just make two of them 33% and the other one 34%.<br />
<br />
Hope that helps. :D<!--content-->add the width attribute to your cells that are colspan=2 and the page should render how you want it to:<br />
<br />
<td colspan="2" width="380"..........><!--content-->
 
Back
Top