Firstly, i'd like to thank LAMPB for his Clear Cart mod, thanks to his mod, I worked out how to implement this correctly, I've also used your text layout!
What does this contribution do?
==============================
This contribution adds a "Remove Product" button (the familiar rubbish bin) that once clicked removes the selected product from the cart. It looks far more professional then the 'click the checkbox then press the update button' route.
Its very easy to install, just edit some lines on a few files and off you go. To see this in action have a look at this site that is being work on: http://www.theadvancedskincareclinic.com/index_.php
please note: this is still in testing phase hence the main file is index_.php and not index.php. Feel free to provide feedback or any comments!
Legend: 
Download

Report
The UPDATE CART button is not needed if you have the Auto Qty Update Contrib installed. if you do have that installed please use the previous verson.
This is a FULL package. I have added instruction on removing the UPDATE CART button as it was not included in the previous updates.
This is my first contrib. Hope it is OK.
This code aligns your boxes in the vertical center instead of the top.
UPDATE: A bug was found relating to products that have additional attributes, becuase they were in the format 123{1}12 e.g. 149{3}92 the code validation failed as this isnt a valid numeric because of the curly braces, the solutions was to simply take out the validation check ( && is_numeric($HTTP_GET_VARS['products_id']) )
If you have already implemented this, just edit the lines around 365 in the application_top.php file so it reads the following:
case 'remove_product' : if (isset($HTTP_GET_VARS['products_id'])) {
$cart->remove($HTTP_GET_VARS['products_id']);
}
break;
Ive updated the package and reuploaded it, see it in action at
http://www.theadvancedskincareclinic.com/index.php
Firstly, i'd like to thank LAMPB for his Clear Cart mod, thanks to his mod, I worked out how to implement this correctly, I've also used your text layout!
What does this contribution do?
==============================
This contribution adds a "Remove Product" button (the familiar rubbish bin) that once clicked removes the selected product from the cart. It looks far more professional then the 'click the checkbox then press the update button' route.
Its very easy to install, just edit some lines on a few files and off you go. To see this in action have a look at this site that is being work on: http://www.theadvancedskincareclinic.com/index_.php
please note: this is still in testing phase hence the main file is index_.php and not index.php. Feel free to provide feedback or any comments!