Hi,
You can edit the file "cart" of the view "checkout" via the menu Display>Views for your modifications.
There, you can change the lines:
$width = $this->config->get('thumbnail_x');
$height = $this->config->get('thumbnail_y');
to:
$width = '200';
$height = '200';
if you want thumbnails of 200*200 in the cart.
And you not have the link on the product name, you can remove the line:
<?php if(@$defaultParams['link_to_product_page']){ ?><a class="hikashop_no_print" href="<?php echo hikashop_contentLink('product&task=show&cid='.$row->product_id.'&name='.$row->alias.$url_itemid,$row);?>" ><?php } ?>
and the line:
<?php if(@$defaultParams['link_to_product_page']){ ?></a><?php } ?>