If you're talking about the height of each product row in the cart, that is because of two <br />'s after the quantity box.
You'll have to open up includes/templates/YOUR_TEMPLATE/templates/tpl_shopping_cart_default and find this section:
<?php
if ($product['flagShowFixedQuantity']) {
echo $product['showFixedQuantityAmount'] . '<br /><span class="alert bold">' . $product['flagStockCheck'] . '</span><br /><br />' . $product['showMinUnits'];
} else {
echo $product['quantityField'] . '<br /><span class="alert bold">' . $product['flagStockCheck'] . '</span><br /><br />' . $product['showMinUnits'];
}
?>
and remove one or both of the <br />'s after the </span>. I'd do it in both places.
As far as the remove button, it looks fine to me?
Bookmarks