Search found 3 matches

by AndrewRoazen
Fri Aug 29, 2003 11:47 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: printing issue
Replies: 14
Views: 11598

What he means is, take the CSS code he was showing, save it as print.css and then link to it in your HTML the way I demonstrated. Nothing changes in your .js files.
by AndrewRoazen
Fri Aug 29, 2003 7:43 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: printing issue
Replies: 14
Views: 11598

BTW, you want to use the LINK tag syntax for referring to your hidemenus.css to ensure NN4 respects it:
<link href="hidemenus.css" rel="stylesheet" media="print" type="text/css" />
A funny bug in NN4 has resulted in our homepage being print rendered as a blank sheet (in NN4) unless this line is ...
by AndrewRoazen
Fri Aug 29, 2003 7:33 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: How to hide menus when printing?
Replies: 1
Views: 2116

How to hide Milonic from printouts

I mentioned this on the mailing list but it bears repeating.

Create a file named hideprint.css and put the following line in it:
#menu0 {display:none;}

Then, in your pages using the menu, add the following line into the <HEAD> section:
<link href="hideprint.css" rel="stylesheet" media="print ...