SkinEFX Posted March 7, 2003 Share Posted March 7, 2003 How do I remove the "Welcome to ..." the graphic next to it "welcome guest....login...etc" this stuff is all at the top of the main page. I don't need it in there and would like it deleted...any ideas? Thanks in advance Link to comment Share on other sites More sharing options...
toolcrazy Posted March 7, 2003 Share Posted March 7, 2003 Comment out this line: note: this is comment tags <!-- //--> <!-- <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>//--> In defauld.php about line 344 Steve ------------------------- Link to comment Share on other sites More sharing options...
toolcrazy Posted March 7, 2003 Share Posted March 7, 2003 Thats default.php. I need to spell check before posting :oops: Steve ------------------------- Link to comment Share on other sites More sharing options...
Guest Posted March 7, 2003 Share Posted March 7, 2003 find the default.php file in your languages directory. There will be some things you can change in there. Also in your english.php file is the rest of it...i think. As for the images that can be changed in your catalog/default.php Change This: td width="100%" valign="top"><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> To This: td width="100%" valign="top"><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"></td> </tr> </table></td> </tr> Link to comment Share on other sites More sharing options...
Guest Posted March 7, 2003 Share Posted March 7, 2003 Beat me by a couple of seconds steve...looks like i need to type quicker... :lol: Link to comment Share on other sites More sharing options...
toolcrazy Posted March 7, 2003 Share Posted March 7, 2003 It's happend to me too! I hate it when that happends. I've even did a bunch of reasearch on a fix and then 3 people posted a fix before me. Oh, well it's the nature of the beast. Steve ------------------------- Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.