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> <a href="' . tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?> </td>
</tr>
into a new image without the name of the image on there?
Thanks!
Latest News: (loading..)
new image in header without the name
Started by Melinda Odom, Sep 30 2002 04:42 PM
2 replies to this topic
#1
Posted 30 September 2002 - 04:42 PM
#2
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
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
Posted 30 September 2002 - 07:12 PM
Thank you Mattice!









