OwenP Posted May 23, 2006 Posted May 23, 2006 How can I remove the little clip art pics that show up in the top right corner of each page? Not the account/basket/checkout ones, but the images that change depending on which part of the store you are viewing. I can't seem to find a reference to them anywhere! Any help much appreciated, thanks.
carlost Posted May 23, 2006 Posted May 23, 2006 How can I remove the little clip art pics that show up in the top right corner of each page? Not the account/basket/checkout ones, but the images that change depending on which part of the store you are viewing. I can't seem to find a reference to them anywhere! Any help much appreciated, thanks. Hello OwenP! One simple way to accomplish what you want to do is to go to your images folder, and find pixel_trans.gif. You can use this 1x1 transparent gif to replace any clip art, or other graphic you don't want. Make a copy of pixel_trans.gif, and rename the copy to the name of whatever graphic (clip art) file you want it to replace. (Of course you have to first remove the original file you want replaced from the images folder) Hope this makes sense some! Regards, Carlos
♥14steve14 Posted May 23, 2006 Posted May 23, 2006 Look for the following snippet of code in your includes/header.php file and delete it. <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> REMEMBER BACKUP, BACKUP AND BACKUP
Mariposa Posted May 23, 2006 Posted May 23, 2006 How can I remove the little clip art pics that show up in the top right corner of each page? Not the account/basket/checkout ones, but the images that change depending on which part of the store you are viewing. I can't seem to find a reference to them anywhere! Any help much appreciated, thanks. Owen, each page has to be changed, i.e. account.php, account_edit.php, etc. I have changed each pic on each page to a new one. My problem is that the area for the previous pix is 57x40px and I would like to know where to go change the image dimension because it is skewing my pic. I am using 32x32 pix but they come out 57x40. Thanks, Cindy
♥14steve14 Posted May 23, 2006 Posted May 23, 2006 My mistake, i didnt read the question properly. What you need to look for on every page that hasd one of those clipart things is something similar to <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_delivery.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>. Just delete the text. If you are unsure of where the code is, you need to open the page with an internet browser, and right click the image to get its name. Do a search of the php page that the image is on, and delete the text. There is nearly one image in all of the php files in your main section of oscommerce REMEMBER BACKUP, BACKUP AND BACKUP
Recommended Posts
Archived
This topic is now archived and is closed to further replies.