I did manage to get the shopping cart icon up into the header area and it even links to the shopping cart...:clap:
It is not located where I hoped I could place it.
Right now, it is just right of my logo.jpg and I would like it just right of my header_bg.jpg
This is what I did to get the shopping cart icon up into the header:
Added defines to my header.php file:
define('HEADER_CART_TEXT', 'View My Shopping Cart');
define('HEADER_CART_WIDTH', '107px');
define('HEADER_CART_HEIGHT','106px');
define('HEADER_CART_IMAGE','cart_logo.jpg');
Added this line of code to my tpl_header.php file
<div id="cart_logo"><?php echo '<a href="http://www.mysite.com/index.php?main_page=shopping_cart">' . zen_image($template->get_template_dir(HEADER_CART_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_CART_IMAGE, HEADER_CART_TEXT) . '</a>'; ?></div>
(All edits were made to my custom files... didn't wreck my origianl ZenCart files)
I'm not sure if this was the correct way of adding a shopping cart icon image to my header but it did get one there.
Again, I'm not happy with its location and would like it moved over to the right side of the page, just after the header_bg.jpg
Any help is greatly appreciated.