Header Customization – How to Add a Cart Icon

header

Hello! Currently Running Magento 1.8.1

Looking to add a ShoppingCart Icon which links to Shopping Cart / Checkout at right side of header.

Would like to know

  1. Steps to Upload and Show ShoppingCart [RIGHT HEADER]
  2. Steps to Resize ShoppingCart
  3. Steps to Add/Remove Links in Quick Access Container (My account, Checkout, etc.)

Best Answer

Please see post:

Move Cart to Header In Magento 1.8.1

" (1) In yourTheme/template/page/html/header.phtml:

//Place following code where you want Cart to show:
<?php echo $this->getChildHtml('cart_sidebar'); ?>

" "Please copy and paste base/default/layout/checkout.xml into YOURTHEME/layout. Then rename

<reference name="right"> 
 with 
<reference name="header">"

"Normaly the cart is not in right column anymore. Also the cart should appear in the header if you still have getChildHtml('cart_sidebar'); ?> in header.phtml"

Related Topic