Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Image Problems


Guest

Recommended Posts

Posted

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!

Posted

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...