=== modified file 'uc_cart/uc_cart.css' --- uc_cart/uc_cart.css 2009-01-21 14:48:10 +0000 +++ uc_cart/uc_cart.css 2009-07-13 15:45:27 +0000 @@ -109,6 +109,14 @@ margin-top: .5em; } +#cart-form-products td.desc { + width: 100%; +} + +#cart-form-products td.total, #cart-form-products td.subtotal { + white-space: nowrap; +} + #cart-form-buttons { width: 100%; border: solid 1px #bbb; === modified file 'uc_cart/uc_cart.module' --- uc_cart/uc_cart.module 2009-07-12 01:12:37 +0000 +++ uc_cart/uc_cart.module 2009-07-13 15:45:37 +0000 @@ -584,9 +584,7 @@ // Add the main title span and text, with or without the arrow based on the // cart block collapsibility settings. if ($collapsible) { - $output .= '' - . $title .''; + $output .= ''. $title .''; } else { $output .= ''. $title .''; @@ -1053,9 +1051,9 @@ $table[$i]['remove']['#cell_attributes'] = array('align' => 'center', 'class' => 'remove'); $table[$i]['image']['#cell_attributes'] = array('class' => 'image'); - $table[$i]['desc']['#cell_attributes'] = array('width' => '100%', 'class' => 'desc'); + $table[$i]['desc']['#cell_attributes'] = array('class' => 'desc'); $table[$i]['qty']['#cell_attributes'] = array('class' => 'qty'); - $table[$i]['total']['#cell_attributes'] = array('nowrap' => 'nowrap', 'class' => 'price'); + $table[$i]['total']['#cell_attributes'] = array('class' => 'price'); $table[$i]['#attributes'] = array('valign' => 'top'); } @@ -1069,7 +1067,6 @@ '#cell_attributes' => array( 'colspan' => 'full', 'align' => 'right', - 'nowrap' => 'nowrap', 'class' => 'subtotal', ), ),