Jump to content



Latest News: (loading..)

- - - - -

new image in header without the name


This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1   Melinda Odom

Melinda Odom
  • Members
  • 1,212 posts

Posted 30 September 2002 - 04:42 PM

Hi,

How can I turn this:
<td align="right" valign="bottom"><?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_account.gif', HEADER_TITLE_MY_ACCOUNT) . '</a>&nbsp;&nbsp;<a href="' . tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a>&nbsp;&nbsp;<a href="' . tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?>&nbsp;&nbsp;</td>
  </tr>

into a new image without the name of the image on there?

Thanks!

#2   mattice

mattice
  • Members
  • 2,637 posts

Posted 30 September 2002 - 06:32 PM

change the
tep_image(DIR_WS_IMAGES . 'header_account.gif', HEADER_TITLE_MY_ACCOUNT)

into

tep_image(DIR_WS_IMAGES . 'your_new_image.gif', '')

or into

tep_image(DIR_WS_IMAGES . 'your_new_image.gif', 'Your alternate description')

You'll have to place your new image in the image directory for this to work,
else use:

tep_image('/path/to/your/' . 'your_new_image.gif', '')


Mattice

#3   Melinda Odom

Melinda Odom
  • Members
  • 1,212 posts

Posted 30 September 2002 - 07:12 PM

Thank you Mattice! :D