MySQL interesse |
|
Ik gebruik op mijn pagina's voor het lettertype hetvolgende:
<div class="kl2">
.......
</div>
<div class="kl2"> ....... </div>
De div is in de CSS omschreven als:
.kl2 {
display:block;
font-family: verdana;
color:#000000;
font-size:11px;
* font-size:11px; /* IE7 hack */
font-weight: bold;
text-align:left;
padding: 20px;
}
.kl2 { display:block; font-family: verdana; color:#000000; font-size:11px; * font-size:11px; /* IE7 hack */ font-weight: bold; text-align:left; padding: 20px; }
werkt allemaal prima op de website.
Maar zogauw ik de pagina ga versturen per e-mail probeer ik de functie voor het printen zo om te zetten dat hij in een ander lettertype en weight uitprint.
Echter daar gaat het fout en gebruikt hij nog steeds het verkeerde type.
terwijl ik toch een goede verwijzing aanhef:
<link href="http://www.naamwebsite.nl/main.css" rel="stylesheet" type="text/css">
<link href="http://www.naamwebsite.nl/main.css" rel="stylesheet" type="text/css" media="print" />
<link href="http://www.naamwebsite.nl/main.css" rel="stylesheet" type="text/css"> <link href="http://www.naamwebsite.nl/main.css" rel="stylesheet" type="text/css" media="print" />
In de CSS heb ik hetvolgende voor de print-layout opgenomen:
/* Print styles */
@media print{
body{
font-size:10px;
background-color: white;
font-family: arial;
* font-size: 10px; /* IE7 hack */
font-weight: normal;
}
p, td{
font-size:10px;
background-color: white;
font-family: arial;
* font-size: 10px; /* IE7 hack */
font-weight: normal;
}
div{
font-size:10px;
background-color: white;
font-family: arial;
* font-size: 10px; /* IE7 hack */
font-weight: normal;
}
#main, #content{
width: 100%;margin: 0%;
}
table{
font-size:10px;
background-color: white;
font-family: arial;
* font-size: 10px; /* IE7 hack */
font-weight: normal;
}
form{
display: none;
}
a:link, a:visited, h1, h2{color: Black;text-decoration: none;}
}
/* Print styles */ body{ font-size:10px; background-color: white; font-family: arial; * font-size: 10px; /* IE7 hack */ font-weight: normal; } p, td{ font-size:10px; background-color: white; font-family: arial; * font-size: 10px; /* IE7 hack */ font-weight: normal; } div{ font-size:10px; background-color: white; font-family: arial; * font-size: 10px; /* IE7 hack */ font-weight: normal; } #main, #content{ width: 100%;margin: 0%; } table{ font-size:10px; background-color: white; font-family: arial; * font-size: 10px; /* IE7 hack */ font-weight: normal; } form{ display: none; } a :link, a :visited , h1 , h2 {color : Black ;text -decoration : none ;}}
Wat gaat er nou verkeerd en wat heb ik nou fout gedaan?
Kan iemand mij er mee helpen?
Allerlei tutorials op internet hebben mij nog niet verder gebracht.
EDIT:
Vanalles uitgeprobeerd, op een gegeven moment zou de print toch de CSS juist lezen.
Uiteindelijke oplossing zat in een 2de .kl2 aanmaken in de @media print{
/* Print styles */
@media print{
body{
font-size:11px;
background-color: white;
font-family: arial;
* font-size: 11px; /* IE7 hack */
font-weight: normal;
}
p, td{
font-size:11px;
background-color: white;
font-family: arial;
* font-size: 11px; /* IE7 hack */
font-weight: normal;
}
div{
font-size:11px;
background-color: white;
font-family: arial;
* font-size: 11px; /* IE7 hack */
font-weight: normal;
}
#main, #content{
width: 100%;margin: 0%;
}
table{
font-size:11px;
background-color: white;
font-family: arial;
* font-size: 11px; /* IE7 hack */
font-weight: normal;
}
.kl2{
font-size:11px;
background-color: white;
font-family: arial;
* font-size: 11px; /* IE7 hack */
font-weight: normal;
}
form{
display: none;
}
a:link, a:visited, h1, h2{color: Black;text-decoration: none;}
}
/* Print styles */ body{ font-size:11px; background-color: white; font-family: arial; * font-size: 11px; /* IE7 hack */ font-weight: normal; } p, td{ font-size:11px; background-color: white; font-family: arial; * font-size: 11px; /* IE7 hack */ font-weight: normal; } div{ font-size:11px; background-color: white; font-family: arial; * font-size: 11px; /* IE7 hack */ font-weight: normal; } #main, #content{ width: 100%;margin: 0%; } table{ font-size:11px; background-color: white; font-family: arial; * font-size: 11px; /* IE7 hack */ font-weight: normal; } .kl2{ font-size:11px; background-color: white; font-family: arial; * font-size: 11px; /* IE7 hack */ font-weight: normal; } form{ display: none; } a :link, a :visited , h1 , h2 {color : Black ;text -decoration : none ;}}
|