Guest Posted July 30, 2010 Posted July 30, 2010 Hello Guys, When I click on os commerce logo it takes me right back to my oc commerce web page, witch is fine. however I don't like much the os commerce logo and I would like to change it with my own logo. -I have to create first my own logo. Any suggestions on how to create nice logo. -After i create my own logo, what should I do? which file I have to change. Please be specefic because I am not very good on this and I am afraid to mess up my oscommerce shopping cart. Thanks guys
pichou2005 Posted July 30, 2010 Posted July 30, 2010 - Create your own logo - Using an FTP client, upload your logo to the /catalog/images/ directory - Make a backup of the file catalog/includes/header.php (just to be safe before you modify the original file) - Download the file catalog/includes/header.php and open it with a text editor - Find this code (around line 68): <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', STORE_NAME) . '</a>'; ?></td> - Replace with this code: <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'mystorelogo.gif', STORE_NAME) . '</a>'; ?></td> Where mystorelogo.gif is the name of your logo file; you can name it as you want - Upload the modified file to catalog/includes/header.php That's it!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.