bigd38 Posted February 5, 2003 Share Posted February 5, 2003 I am trying to replace the Navbar with buttons where my account link is. An change the way it looks. Where do I go to do that. Link to comment Share on other sites More sharing options...
networkdad Posted February 5, 2003 Share Posted February 5, 2003 You can get an idea on how the html code and php is implemented together by looking at this: <td valign="middle"><?php echo tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce'); ?></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, '', 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?> </td> </tr> You can see how images are called. I pulled this bit of code from /catalog/includes/header.php - Basically, you just want to stick in your custom buttons and call them using html. Hopefully i'm making some sort of sense here...if not, search for this as this issue has been discussed before. Good luck! Link to comment Share on other sites More sharing options...
bigd38 Posted February 6, 2003 Author Share Posted February 6, 2003 That is what I thought I guess I didn't look hard enough. Thank you. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.