Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Main Page help


shopandspree

Recommended Posts

Posted

I have tried everywhere and for the life of me cannot find the right place. I am trying to place a picture on the main body of the catalog page, I want it to go right under where it says: Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account?

 

Can someone please tell me how & where i need to go to place this picture.

 

Thank you

Posted

The file you need to alter is the default.php file, almost near the bottom of this file you should see something like the code below:

 

          <tr>

           <td class="main"><?php echo tep_customer_greeting(); ?></td>

         </tr>

 

This is the area for the greeting, so you can add your image after this code.

 

If you intend to keep the some sort of main text, I added the code below, so the text sort of wraps the image.

 

<tr>

   <td valign="middle" class="Ttop" background="images/cap1.gif" border="0" width="444" height="59">

   <?php echo tep_customer_greeting(); ?></td>

 </tr>

  <tr>

   <td valign="top" background="images/bg_mid1.gif" width="444" style="padding-top:10px;padding-bottom:20px;">

   <img src="images/pic1.gif" border="0" align="left" hspace="15" width="210" height="162">

<div class="Tmid"><?php echo TEXT_MAIN; ?></div>

   

   </td>

 </tr>

 

Hope this helps.

Archived

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

×
×
  • Create New...