muahahahaha, sorry, I just figured out how to hide the HVMenu when printing, thought a devilish laugh was in order.
Okay, you all wanted to know. Well, start off by creating a class definition in your print style sheet like so:
.menuItem { visibilty: hidden; display: none; }
REPEAT this should be defined in a stylesheet that is called like this in the head:
HTML Code:
<link rel="STYLESHEET" media="print" href="/common/print.css" type="text/css" />
notice media="print", means this style sheet will be used only when printing.
Okay, now in the menu_com.js file scroll down to the 'MbrSetUp' function. After the variable declarations type in:
this.className = "menuItem";
This effectivly assigns every element of the HV menu a class name 'menuItem', which when printed will not be visible.
For the final test open your page up and do a print preview and worship the ground I walk on.
Bookmarks