I am making a printer friendly style sheet for:
http://home.comcast.net/~w.a.cotton/USFS/index.htm
Does anyone know the code to not print the milonic menu? Below is my style sheet so far.
/* CSS Document - Printer friendly */
/* Black on white with 12-point, serif fonts:*/
body { color : #000000; background : #ffffff; font-family : "Times New Roman", Times, serif; font-size : 11pt; }
/* Underline links */
a { text-decoration : underline; color : #0000ff; }
/* Remove Non-Essential Images, Ads, Navigation, and Scripting */
#bottom-nav, #lftBar, #flash{ display : none; }
CSS style sheet to no print menu
grace442,
The code to put in your style sheet is:
.mmenu
{
position:absolute;
display:none;
}
To see the full description, see the menu FAQ at:
http://milonic.com/menufaq.php#noMenuOnPrint
Viken K.
The code to put in your style sheet is:
.mmenu
{
position:absolute;
display:none;
}
To see the full description, see the menu FAQ at:
http://milonic.com/menufaq.php#noMenuOnPrint
Viken K.