This topic is locked

Supertop on Printer Friendly Page

7/27/2006 5:27:56 AM
PHPRunner General questions
S
scy author

On a printer friendly page the menu I am using shows unsightly squares around the menu items. Is there a way to not show parts or any of supertop content on the Printer friendly screen?

J
Jane 7/27/2006

Hi,
you can delete your sypertop from Printer-friendly page to modify ..._print.php file manually.

Find and remove following code snippet:

if(file_exists("include/supertop.php"))

include("include/supertop.php");



Or you can create new supertop (printer_supertop.php for example) for the Printer-friendly page only, put it to the include directory and make following changes:

if(file_exists("include/printer_supertop.php"))

include("include/printer_supertop.php");