Kerm007 Posted January 23, 2009 Share Posted January 23, 2009 how can i center my logo on ther header ? go this arround my line 55 to 57 in the header file in the folder include header.php <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td> Thanks here the site i want to have the logo on top center http://www.prodiskmusic.com/onlinestore/catalog/ Link to comment Share on other sites More sharing options...
Hotclutch Posted January 23, 2009 Share Posted January 23, 2009 Hi Pierre Try this: <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td valign="middle" align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td> Or this: <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td> Link to comment Share on other sites More sharing options...
Kerm007 Posted January 24, 2009 Author Share Posted January 24, 2009 Hi Pierre Try this: <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td valign="middle" align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td> Or this: <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td> great it works with the first mod Ty Pierre Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.