Guest Posted April 14, 2008 Posted April 14, 2008 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
photofxplus Posted April 14, 2008 Posted April 14, 2008 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
Guest Posted April 14, 2008 Posted April 14, 2008 Could you please elaborate a little, on how to actually insert the picture. (without it just appearing as text, or having errors) Thanks
photofxplus Posted April 14, 2008 Posted April 14, 2008 <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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.