Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I get rid of dorky cart image etc


Guest

Recommended Posts

Posted

I would like to find some better header images for "my account", "cart" and "check out" . In fact I think I would just rather not have them up there at all. How do I remove them.

 

Could I maybe put a rotating banner up there in the right side of header?

Posted
I would like to find some better header images for "my account", "cart" and "check out" . In fact I think I would just rather not have them up there at all. How do I remove them.

 

Could I maybe put a rotating banner up there in the right side of header?

 

look within each of those php files, look for table_background_checkout.gif or such. change the image name or just delete the whole td

Posted

These are in catalog/includes/header.php

 

<table border="0" width="100%" cellspacing="0" cellpadding="0">
 <tr class="header">
<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce') . '</a>'; ?></td>
<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) . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a>  <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?>  </td>
 </tr>
</table>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...