Guest Posted January 20, 2009 Share Posted January 20, 2009 How do I do this? I would like to add some text AFTER the new products for January on the main page but BEFORE the footer. I may not be doing it in the right file or in the right place. Tried in index.php, but my text showed up at the top above my logo. Any help would be greatly appreciated. If you would like to see what Im talking about on my particular site: Visit My Website Thanks bunches, Chelle Link to comment Share on other sites More sharing options...
germ Posted January 20, 2009 Share Posted January 20, 2009 In your root index.php find this code: <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> Just AFTER it ADD this code: <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"> <p>Put your text here (with proper HTML formatting)</p> </td> </tr> You'll have to do this TWO places in the index file. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there > Link to comment Share on other sites More sharing options...
Guest Posted January 20, 2009 Share Posted January 20, 2009 In your root index.php find this code: <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> Just AFTER it ADD this code: <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"> <p>Put your text here (with proper HTML formatting)</p> </td> </tr> You'll have to do this TWO places in the index file. Thanks, Jim. Im gonna do this after I get supper made. Thanks for helping....again. :D Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.