Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding An Additional Picture


TraceyLB

Recommended Posts

Posted

I'm sorry if this is a repeat post. But I can not find it now that I need it. (Still looking). But I was wondering how I can add an extra picture to the header. I have the one on the left but I would like to add another one to the right.

 

Any help would be appreciated.

 

Thanks,

Tracey

Posted

The header information is located in catalog/includes/header.php between lines 55 and 66.

It will be easy to spot because the actual filenames of the images are in several tags: oscommerce.gif, which is located on the left of the stock header,

& header_account.gif, header_cart.gif, and header_checkout.gif, the 3 small images that are aligned to the right of the header.

Now that you found where you need to place your new header, your probably looking all the php scripting and wondering where exactly to put your image information.

This is easy also. If you look at the html structure you'll see that the stock header information is inserted into nothing more than a simple table row, table data structure:

 

<tr class="header">

<td valign="middle">This is the logo on the left</td>

<td valign="right">These are the images on the right</td>

</tr>

 

Now if you plan on using the two sides fo the header box, left and right, then all you have to do is remove the contents of each <td> and replace it with your own.

If your are planning on using the entire area for your new header, then your going to need to make an adjustment.

This is one way:

 

<tr class="header">

<td valign="middle" colspan="2">This is the logo on the left</td>

<--! <td valign="right">These are the images on the right</td> -->

</tr>

 

What is done here is the left side has been told to act like it's 2 data rows instead of 1, and since you don't want 3 data rows, I have commented out the second data row.

Now everything you put in the first data row will use the entire header area.

Done.

Posted

Thank you so much! I got it taken care of. I just couldn't remember what to do. I just didn't look down much on the header file.

 

Thanks again!

Tracey

Archived

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

×
×
  • Create New...