d4funky1 Posted November 13, 2006 Posted November 13, 2006 Hi, How can i remove -> from the end of my category names in the infobox? I am also looking to get rid of the two red bars that go horizontaly across my page top and bottom that display the date and the links to my account etc. you can see it here www.fancydressretail.co.uk Thanks D4
Wendy James Posted November 13, 2006 Posted November 13, 2006 To remove the -> In catalog/includes/boxes/categories.php look for if (tep_has_category_subcategories($counter)) { $categories_string .= '->'; and change it to if (tep_has_category_subcategories($counter)) { $categories_string .= ''; Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
Wendy James Posted November 13, 2006 Posted November 13, 2006 For the red line with the navigation and the my account etc links on the right open catalog/includes/header.php and remove <table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="headerNavigation"> <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> </td> </tr> </table> for the red line at the bottom with the date and counter open catalog/includes/footer.php and remove <table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="footer"> <td class="footer"> <?php echo strftime(DATE_FORMAT_LONG); ?> </td> <td align="right" class="footer"> <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?> </td> </tr> </table> <br> Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.