aspiringarts Posted June 12, 2004 Share Posted June 12, 2004 Through hours of searching the forums and through the website files, I've managed to do a lot of it, but can't locate the last couple of problems: 1) How to remove the >> from the nav bar & what file it's in 2) In what file to remove the icon next to each page title (appears under the nav bar on the default install, e.g. table_background_default.gif . 3) Where to find the code for the surfer dude who appears at (in my case unwanted) times like checkout. I'd like to make him, like, surf away, man. TIA, Susan Link to comment Share on other sites More sharing options...
Guest Posted June 13, 2004 Share Posted June 13, 2004 1. This is in catalog/includes/header.php - I have highlighted the bit you are looking for: <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> 2. These are hardcoded into each page you are viewing - eg. <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_contact_us.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> 3. He can be found in create_account_success.php: <td><?php echo tep_image(DIR_WS_IMAGES . 'table_background_man_on_board.gif', HEADING_TITLE); ?></td> and checkout_success.php <td valign="top"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_man_on_board.gif', HEADING_TITLE); ?></td> Matti Link to comment Share on other sites More sharing options...
aspiringarts Posted June 13, 2004 Author Share Posted June 13, 2004 Dear Matti, Thank you SO MUCH! And I love your sig! LOL. Susan Link to comment Share on other sites More sharing options...
Guest Posted June 13, 2004 Share Posted June 13, 2004 Ooops - the surfer can also be found in logoff.php and contact_us.php :P Matti Link to comment Share on other sites More sharing options...
aspiringarts Posted June 13, 2004 Author Share Posted June 13, 2004 Cool, thanks. I found the one in Logoff, but not the Contact Us one. Susan Link to comment Share on other sites More sharing options...
Guest Posted June 13, 2004 Share Posted June 13, 2004 Cool, thanks. I found the one in Logoff, but not the Contact Us one. Susan It is there - scroll down a little :P if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'success')) { ?> <tr> <td class="main" align="center"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_man_on_board.gif', HEADING_TITLE, '0', '0', 'align="left"') . TEXT_SUCCESS; ?></td> Matti Link to comment Share on other sites More sharing options...
aspiringarts Posted June 13, 2004 Author Share Posted June 13, 2004 Oh no, I meant I had found the logoff one on my own. I found the contact us one after you told me about it. Thank you! Susan Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.