Click to See Complete Forum and Search --> : Drop Down Menu Shows When Page Is Printed


alessandro_del_
05-18-2006, 05:04 PM
Hi all,
Slight problem. I used Fireworks to create a drop down menu. However the problem is that when you print the page all the links in the drop down menus show up under the titlebar. I inserted some code to prevent this happening in IE but can't seem to hide it in Firefox...can anyone help?! Also does anyone else have this problem?
Thanks

NogDog
05-18-2006, 05:50 PM
You could use CSS and a print media type in your style sheet/block to hide the elements, if the element(s) to be hidden has an ID or class which can be referenced.

@media print {
#nav li ul {
display: none;
}
}

Obviously, I don't know how your HTML is structured, so I'm just showing a more-or-less generic example.

alessandro_del_
05-18-2006, 06:34 PM
Yes i have already used a print hide css to block it, works in IE but not Firefox.