programguru Posted December 30, 2004 Posted December 30, 2004 here an example of what i would like to do: Header (below) logo.gif img img img --------------------------------------------------------- top>products> etc... i would like to completely remove the logo and other 3 images on the standard header of oscommerce. i have already check out a bunch of files and had no luck. if anyone has some advice or knows which files to look for please let me know. happy new years!!!! J
ozcsys Posted December 30, 2004 Posted December 30, 2004 here an example of what i would like to do: Header (below) logo.gif img img img --------------------------------------------------------- top>products> etc... i would like to completely remove the logo and other 3 images on the standard header of oscommerce. i have already check out a bunch of files and had no luck. if anyone has some advice or knows which files to look for please let me know. happy new years!!!! J <{POST_SNAPBACK}> You need to look in the includes/header.php file The code for the logo <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce') . '</a>'; ?></td> The code for the three images <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> The Knowledge Base is a wonderful thing. Do you have a problem? Have you checked out Common Problems? There are many very useful osC Contributions Are you having trouble with a installed contribution? Have you checked out the support thread found Here BACKUP BACKUP BACKUP!!! You did backup, right??
Recommended Posts
Archived
This topic is now archived and is closed to further replies.