Guest Posted November 26, 2004 Posted November 26, 2004 Hi, I got some questions that i've tried to solve but just can't get it to work :( First of all, i would like to center the Logo image at the header... how do i do that? I have removed the 3 buttons that were there from the beginning, the Account , Cart etc. And only have the logo left there, how do i center it? Secondly, i would like to have a background image on the row that the Text options are at (The My Account , Shopping Cart , Checkout Text). I'm also using the 800px center, is it possible to put a background image on the left and right space that becomes? Thanks for the help!
gscreations Posted November 26, 2004 Posted November 26, 2004 put this in your header replace the two tables you mention: <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td align="center" valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce') . '</a>'; ?></td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="headerNavigation"> <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" background="PUTYOURBGIMAGEHERE" 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>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.