Question
Does anyone have any code available to make a regular icon / image be clickable? I'd like to have a shopping cart but for a variety of reasons don't want it to just say "Cart" - mostly because the shipping cost that will be added to the item cost depends greatly on destination. I'm considering designing 3 different cart designs....one for US buyers, one for Canadian buyers and one for everybody else. But the cart images I can come up with are of course not clickable. So if anyone has some code to share, or a link to where I could go to get code, I'd really appreciate it!
Answer
ASSuming that you've already got a cart icon on your site:
<a href="http://www. your URL .com/*"><img alt="USA/Canada/Whatever Cart" src="files/ the name of your icon.gif" height="?" width="?" border="0"></a>
*or, where ever you want to link to.
Answer
Originally Posted by Kathleen
ASSuming that you've already got a cart icon on your site:
<a href="http://www. your URL .com/*"><img alt="USA/Canada/Whatever Cart" src="files/ the name of your icon.gif" height="?" width="?" border="0"></a>
*or, where ever you want to link to.
Thanks, I'll give it a shot!