View Single Post
  #2 (permalink)  
Old 09-28-2003, 03:16 AM
Tommy Tommy is offline
Administrator
 
Join Date: Jan 2003
Posts: 1,350
Default

To hide the right menu you need to edit the module code.


Right blocks showing:
Code:
require_once("mainfile.php"); $pagetitle = "- My Page Title"; $index = 1; include("header.php");

Right blocks NOT showing:
Code:
require_once("mainfile.php"); $pagetitle = "- My Page Title"; $index = 0; include("header.php");
Notice the value of $index changes?.....
Reply With Quote