By the way, now I tried it and I was able to reproduce this also on the demo site(so it's not related to my template), change the name of the rubber duck to "rubberduckrubberduck" and you will see that the cross icon is party invisible in the cart.
Here is the change I made. It replaces "rubberduckrubberduck" with "rubberdu."
Feel free to include the code in your next release if you want:
/com_hikashop/views/product/tmpl/cart.php
(Below I replaced php opening/closing tags otherwise the code is not shown)
<a href="?php echo hikashop::completeLink('product&task=show&cid='.$row->product_id.$url_itemid);?" >
?php
// Fixes the width proplem when the product name is too long
// ------------
$words = explode(" ", $row->product_name);
$count = count($words);
for($i=0; $i < $count; $i++) {
if(strlen($words[$i]) < 10) {
echo $words[$i];
}
else {
echo substr($words[$i], 0, 9) . ".";
}
if($i != ($count -1)) echo " ";
}
// ------------
?</a>