CSS may be easier...
If you want the sidebox to be hidden on ALL pages EXCEPT one specific page, then you create a declaration in the main stylesheet that says:
#mySidebox {display:none;}
Then you create a PAGE-SPECIFIC stylesheet (for whatever page you want that sidebox on) and change the declaration to:
#mySidebox {display:block;}
Look at the stylesheet README file in the main CSS folder (probably classic/css) for instructions on creating page-specific stylesheets.
SEE IT IN ACTION (sort of)...
GRAPHIC SIDEBOX is ON
GRAPHIC SIDEBOX is OFF


Reply With Quote

