NavBar Printing Problem

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
greg
Beginner
Beginner
Posts: 1
Joined: Tue Feb 07, 2006 6:42 pm

NavBar Printing Problem

Post by greg »

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?
Migru
Milonic Guru
Milonic Guru
Posts: 669
Joined: Tue Nov 01, 2005 8:22 pm
Location: Hamburg - Germany
Contact:

Post by Migru »

Hi
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;
}
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">
Post Reply