Hello,
I have a fairly nice table, but it has an extra column
and I can not seem to get rid of it :(

This is my css for the table:
And the HTML:
How do I get rid of this extra narrow column on the right hand side ?
Thanks for any advice.
.
I have a fairly nice table, but it has an extra column
and I can not seem to get rid of it :(

This is my css for the table:
Code:
table.analyzer{
width:600px;
font-size:14px;
border: 2px solid #ccc;
border-collapse:collapse;
}
table.analyzer td{
border: 1px solid #ccc;
padding:8px 8px;
}
Code:
<table cellpadding="0" cellspacing="0" class="analyzer"> <tr style="font-weight:bold; height:40px; background-color:#a9a9a9;"><td width="30px">Pos</td><td style="text-align:left; width:420px;">Product Description</td><td>Earn</td><td>Future</td><td>Comm</td><td>Gravity</td></tr> <?php echo "<tr> <td>$Rctr</td> <td>$stuff <a href=\"$det_link\"> Detailed Info.</a></td> <td>$earn</td> <td>$rebill</td> <td>$comm</td> <td>$grav</td> </tr> <tr> <td>$Rctr</td> <td>$stuff <a href=\"$det_link\"> Detailed Info.</a></td> <td>$earn</td> <td>$rebill</td> <td>$comm</td> <td>$grav</td> </tr> // then a couple more rows, then this: <tr><td style=\"text-align:left; color:#cc3399;\" colspan=\"6\" ><b> ********************************************************************************* <br><br> CB Analyser Tute by John Simmons: <a href=\"http://www.expert-world.com/im/John-Simmons-niche-affiliate-articles-clickbank-Super-Analyzer-no.1-R63.html\">The Best Use of CB Super Analyzer Tool</a> <br><br> Second Tutorial by John Simmons: <a href=\"http://www.expert-world.com/im/John-Simmons-niche-affiliate-tutorials-Using-CB-Super-Analyzer-Tute01-Q69.html\">Using CB Super Analyzer Tutorial 2</a> <br><br> Third Tutorial by John Simmons: <a href=\"http://www.expert-world.com/im/John-Simmons-niche-affiliate-tutorials-Using-CB-Super-Analyzer-Tute03-Q70.html\">Using CB Super Analyzer Tutorial 3</a> <br><br> ********************************************************************************* </b><td><tr> "; ?>
Thanks for any advice.
.
Comment