Printing from MS IE 7.0
My problem is related to printing from MS IE 7.0
I have an intranet site developed in Frontpage 2003 running on a win 2003
server. It works fine as long as the user run MS Explorer 6.0. The printing
is the styled as expected by my “print_body.css”.
But, some of the users have updated to MS IE7.0. In this case the print
feature doesn’t work. I have defined the width of the page to be 750 pix on
the screen. The print on pare show this limitation in the print width as well
as the font size is smaller than wanted.
What is wrong or missing in order to use the “print_body.css” when running
MS IE 7.0
A sample page look like this
<html>
<head>
<meta http-equiv="Content-Language" content="da">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-store" />
<meta http-equiv="imagetoolbar" content="false">
<link href="../body.css" rel="stylesheet" type="text/css" >
<link href="../print_body.css" rel="stylesheet" type="text/css"
media="print"/>
<title>Velkommen til Kvalitets- og Miljøstyringssystemet</title>
</head>
<center>
<div id="indhold">
<p>Pressalit Group A/S’ Kvalitets- og Miljøstyringssystem er et
samlet ledelsessystem, der fokuserer på politikker, mål, ansvar og
forretningsprocesserne i den samlede koncern. </p>
</div>
</center>
</body>
</html>
My printing CSS look like this
[at] media print {
TABLE.noprint, DIV.noprint {display:none}
}
..pagebreak { page-break-before: always }
body{
color: #FFFFFF;
}
#indhold{
margin-left:auto;
margin-right:auto;
padding:2px;
text-align:left;
color:black;
background-color : none;
}
P {
font-family: Times, Serif;
font-size:10pt;
line-height:10pt ;
text-align : left;
margin-top: 0;
margin-left: 10pt;
margin-right:80pt;
margin-bottom: 8pt;
}
H1{
font-family : Arial, Sans-Serif;
font-size : 12pt;
font-weight : bold;
text-align : left;
margin-bottom: 6pt;
}
..graphic{
margin-left: -40pt;
}
Thanks in advance
Jorgen
Re: Printing from MS IE 7.0
IE7 includes Printing Enhancements: http://www.ie-vista.com/print.html
--
~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
Expression Web Resources: http://www.spiderwebwoman.com/xweb/
FrontPage Resources: http://www.spiderwebwoman.com/resources/
Please reply to the newsgroup for the benefit of others
"Jorgen" <Jorgen [at] discussions.microsoft.com> wrote in message
news:11594BAA-D62C-4CB5-874D-82529ED4941F [at] microsoft.com...
> My problem is related to printing from MS IE 7.0
>
> I have an intranet site developed in Frontpage 2003 running on a win 2003
> server. It works fine as long as the user run MS Explorer 6.0. The
> printing
> is the styled as expected by my "print_body.css".
>
> But, some of the users have updated to MS IE7.0. In this case the print
> feature doesn't work. I have defined the width of the page to be 750 pix
> on
> the screen. The print on pare show this limitation in the print width as
> well
> as the font size is smaller than wanted.
>
> What is wrong or missing in order to use the "print_body.css" when running
> MS IE 7.0
>
>
> A sample page look like this
>
>
> <html>
> <head>
> <meta http-equiv="Content-Language" content="da">
> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
> <meta name="ProgId" content="FrontPage.Editor.Document">
> <meta http-equiv="pragma" content="no-cache" />
> <meta http-equiv="Cache-Control" content="no-store" />
> <meta http-equiv="imagetoolbar" content="false">
> <link href="../body.css" rel="stylesheet" type="text/css" >
> <link href="../print_body.css" rel="stylesheet" type="text/css"
> media="print"/>
> <title>Velkommen til Kvalitets- og Miljstyringssystemet</title>
> </head>
> <center>
> <div id="indhold">
> <p>Pressalit Group A/S' Kvalitets- og Miljstyringssystem er et
> samlet ledelsessystem, der fokuserer p politikker, ml, ansvar og
> forretningsprocesserne i den samlede koncern. </p>
> </div>
> </center>
> </body>
> </html>
>
> My printing CSS look like this
>
> [at] media print {
> TABLE.noprint, DIV.noprint {display:none}
> }
>
> .pagebreak { page-break-before: always }
>
> body{
> color: #FFFFFF;
> }
>
> #indhold{
> margin-left:auto;
> margin-right:auto;
> padding:2px;
> text-align:left;
> color:black;
> background-color : none;
> }
>
> P {
> font-family: Times, Serif;
> font-size:10pt;
> line-height:10pt ;
> text-align : left;
> margin-top: 0;
> margin-left: 10pt;
> margin-right:80pt;
> margin-bottom: 8pt;
> }
>
> H1{
> font-family : Arial, Sans-Serif;
> font-size : 12pt;
> font-weight : bold;
> text-align : left;
> margin-bottom: 6pt;
> }
>
> .graphic{
> margin-left: -40pt;
> }
>
> Thanks in advance
>
> Jorgen
>