http://www.zen-cart.com/index.php?ma...roducts_id=498
For the 'Shopping cart totals in header' mod, by default, it appears on the left side of the page. Does anyone know how to make it appear on the right side?
http://www.zen-cart.com/index.php?ma...roducts_id=498
For the 'Shopping cart totals in header' mod, by default, it appears on the left side of the page. Does anyone know how to make it appear on the right side?
If you have it installed, and can supply a link to the site, I'm sure we can figure it out. Probably just a matter of finding what id or class it uses and floating it right in the stylesheet.
<li class="cartCountTotal">My Cart: <span class="style1">
<?php echo $_SESSION['cart']->count_contents(); ?> items
<?php $header_cart = $currencies->format($_SESSION['cart']->show_total());
echo $header_cart;
?>
</span>
<br class="clearBoth" />
</li>
That is the code for the mod. I need it to float right instead of left.
Should be .cartCountTotal {float:right;} in the stylesheet.
That did the job.
Thank you.