Guest Posted February 20, 2006 Posted February 20, 2006 Hello Can someone please help me move the "New Products for..." up in top of the frontpage. I don?t want the welcome-messages" to be shown. I know it?s something to do with the Index.php but where, what and HOW ??? I hope someone will help me. Thank you in advance. Best regards
justme1 Posted February 21, 2006 Posted February 21, 2006 Hello Can someone please help me move the "New Products for..." up in top of the frontpage. I don?t want the welcome-messages" to be shown. I know it?s something to do with the Index.php but where, what and HOW ??? I hope someone will help me. Thank you in advance. Best regards look in wwwroot/index.php and then search for // default page. then just remove some tags you'll see what tags.
Guest Posted February 21, 2006 Posted February 21, 2006 look in wwwroot/index.php and then search for // default page. then just remove some tags you'll see what tags. Thank you pal :thumbsup:
Wendy James Posted February 22, 2006 Posted February 22, 2006 index.php change <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="main"><?php echo tep_customer_greeting(); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_MAIN; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> </table></td> </tr> </table> to <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> </table></td> </tr> </table> Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.