Guest Posted January 20, 2006 Posted January 20, 2006 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?
Guest Posted January 20, 2006 Posted January 20, 2006 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
Mediajuggle Posted January 20, 2006 Posted January 20, 2006 seems like someone just posted a contribution with you in mind: http://www.oscommerce.com/community/contributions,3862 My Contribution Music Download Store Template http://www.oscommerce.com/community/contributions,4275
user99999999 Posted January 20, 2006 Posted January 20, 2006 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>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.