This one is for an image that is not a link......this one pulls the image from the catalog/images directory
<?php echo tep_image(DIR_WS_IMAGES . 'your_image.gif'); ?>
To add the ALT text and dimensions:
<?php echo tep_image(DIR_WS_IMAGES . 'my_image.gif', 'my ALT text', '100px', '150px'); ?>
This one is a clickable image link for a page within your web site......
<?php echo '<a href="' . tep_href_link('your_directory/your_page.php') . '">' . tep_image(DIR_WS_IMAGES . your_image.gif) . '</a>'; ?>
To make it a text link for a page within your web site....
<?php echo '<a href="' . tep_href_link('your_directory/your_page.php') . '">' . Your Text Here . '</a>'; ?>
To make it a text link for a page outside your web site....
<?php echo '<a href="http://www.some-other-site.com">Your Text Here</a>'; ?>
If you are using images in the stylesheet for backgrounds they should also use the relative address.....e.g. images/my_background.gif









