I don't know what I was thinking when I posted this ... but it should be:
Try this to link the image and the contents text:
Code:
<div id="cart_header" class="topBox"><a id="carth_link" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"></a>Shopping Cart<br /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></div>
Add this to your stylesheet:
Code:
#carth_link{
display:block;
height:30px;
width:50px;
margin-right:.4em;
}
You'll possibly need to adjust #cart_header in your stylesheet as well. If that's the case, deplete the padding within #cart_header, then apply some right margin to the #carth_link style you just right. I've touched it with a simple margin already.
Bookmarks