I have an issue. I have tried the style 'table style="width:200px!important;"' as inline but still somehow table is of 742 px what could be the reason of it as we know inline important override all other styles. in td I am just printing 1,2,3 garbage smallest values but still no luck.
<strong><span><?php echo $this->__($this->getHeader()) ?></span></strong>
<?php $products = $this->getCollection(); ?>
<?php if (0 < $products->getSize()) { ?>
<table style="width:200px !important;">
<tr>
<?php
$i=0;
foreach ($products as $p) { ?>
<td style="text-align:left;">
1
</td>
<?php } ?>
</tr>
</table>
<?php } ?>