Rank: Newbie Groups: Member
Joined: 11/18/2007 Posts: 2
|
Dear support,
While evaluating your product I was wondering if it is possible to prevent the EO:Menu object from being printed on a sheet of paper when you press the print button of the browser.
Thanks in advance.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Yes. You can do that by specifying a CSS file for printing. It will be something like this:
Code: HTML/ASPX
<link rel="stylesheet" type"text/css" href="print.css" media="print">
<div class="navigation">
....our menu goes here
</div>
Inside the .css file print.css you can do:
Code: CSS
.navigation
{
display: none;
}
Thanks
|