HI there.
So I have:
/wamp/www/zencart/includes/languages/english.php
Line #108 : define('BOX_HEADING_SHOPPING_CART', 'Shopping Cart');
I want to add an image which displays before or after the word shopping cart.
How would I go about this?
HI there.
So I have:
/wamp/www/zencart/includes/languages/english.php
Line #108 : define('BOX_HEADING_SHOPPING_CART', 'Shopping Cart');
I want to add an image which displays before or after the word shopping cart.
How would I go about this?
That wasn't the plan!
Thats good thread but I want to leave the text there and add a little image of shopping trolley beside the text.
Can I change:
define('HEADER_TITLE_CATALOG', '<img src="images/your_image.XXX" alt="Your_Alt_Text" />');
To this:
define('HEADER_TITLE_CATALOG', '<img src="images/your_image.XXX" alt="Your_Alt_Text" />',Shopping cart');
???
Also is there way to leave the shopping cart button on? ie they don't need anything in the trolley it just stays on?
That wasn't the plan!
This is a simple CSS issue:
Code:#shoppingcartHeading { background-image: url("../images/cart-heading.jpg"); }
20 years a Zencart User
Thanks for the response Schoolboy but I want to add the image to the text in the header area.
I also want to leave the the shopping cart button on with or without something in the cart.
Am I better of just some href links? If so how would I do that?
That wasn't the plan!
As we can't see your current header (WAMP) it is difficult to offer specific advice, but perhaps the route to go is to code in a dedicated DIV for that element (or DIVS) into which you can insert style ID's or CLASSES. You can then write declarations for those styles and put them into your stylesheet.
20 years a Zencart User