Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How Do I...


Guest

Recommended Posts

Posted

I would like to change the Main Text to a large centered image.

Also, I might want to have the image above the "welcome guest..." text.

Can anyone help me with how to do that?

 

 

Thanks,

Jennifer

Posted

To change the main text look at this page:

catalog/includes/languages/english/index.php

This is the main text. Any editing would only show on the home page of your store.

 

To place the image above the greeting look at page:

catalog/index.php Line:301

<tr>

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

</tr>

 

You could add another row above it:

<tr>

<td class="main"> put your image here </td>

</tr>

<tr>

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

</tr>

Lloyd

Posted

Could you please elaborate a little, on how to actually insert the picture. (without it just appearing as text, or having errors)

Thanks

Posted

<tr>

<td class="main"><img src="file/path/to/your/picture"></td>

</tr>

<tr>

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

</tr>

 

Such as if your picture is in the folder:

catalog/images

 

then:

<img src="images/pictureName.jpg">

Lloyd

Archived

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

×
×
  • Create New...