I'm trying to modify my /cart page to have an image to the left of the cart list. Adding the image was pretty easy by overriding cart_view_form and putting the image in top of the theme override
<?php
$output = '<div id="cart-form-products"><img src=/img/big_cart.jpg align=left>'
. tapir_get_table('uc_cart_view_table', $form) .'</div>';
?>Now the problem is I cannot for the life of me get the uc_cart_view_table to change it's width. I've tried to use form_alter, and also used hook_table_alter (but this does not appear to let me use case attributes). So far the only way I have been able to modify the width of this table is changing this code is uc_cart_view_table
<?php
case 'attributes':
$attributes = array('width' => '100%');
return $attributes;
?>I know I can't make a core hack just to put an image on my cart page, so what's a better way to accomplish this?
Jim

