One possibility involves a bit of work.
in your stylesheet create a new ID:
#productbox {border: 1px solid #000;}
Now in tpl_columnar_display.php make the following changes
Code:
<div id="productbox">
<?php
for($col=0;$col<sizeof($list_box_contents[$row]);$col++) {
$r_params = "";
if (isset($list_box_contents[$row][$col]['params'])) $r_params .= ' ' . (string)$list_box_contents[$row][$col]['params'];
if (isset($list_box_contents[$row][$col]['text'])) {
?>
<?php echo '<div' . $r_params . '>' . $list_box_contents[$row][$col]['text'] . '</div>' . "\n"; ?>
<?php
}
}
?>
</div>
<br class="clearBoth" />
<?php
}
}
Add the portions in red
see if that works.