NavBar Printing Problem
NavBar Printing Problem
When I go to print out the page Im working on, the navbar on the left will also show up in the center covering up some text. How can I fix this problem?
Hi
found in the archives
http://milonic.com/mfa/2003-August/002316.html
Michael
There is a "search" option in the menu of this page and homepage. I tested that and you can see, it works, I could find what I was searching for.
I even remember to have seen it somewhere else on one of the pages.
*) the css file is normally referenced in the head section of your html file
sample:
<link href="yourfilename.css" rel="stylesheet" media="print">
Also, just to re-iterate printing and the menu. If you declare a style sheet of type media=print and then place this little snippet in the CSS file, it will do pretty much the same thing
Code: Select all
.mmenu
{
position:absolute;
display:none;
}
http://milonic.com/mfa/2003-August/002316.html
Michael
There is a "search" option in the menu of this page and homepage. I tested that and you can see, it works, I could find what I was searching for.
I even remember to have seen it somewhere else on one of the pages.
*) the css file is normally referenced in the head section of your html file
sample:
<link href="yourfilename.css" rel="stylesheet" media="print">