Tabs on and off keep content
Hi, If by print mode you mean you have some CSS in a @media print query, then you can just apply the same CSS without the @media print prefix. E.g.
becomes just:
Code: Select all
@media print {
//your print CSS here, e.g.
body {
background-color: lightgreen;
}
}
Code: Select all
body {
background-color: lightgreen;
}
Might also have to make your CSS rules !important, like this:
body {
background-color: lightgreen !important;
}
-
- Information
-
Who is online
Users browsing this forum: No registered users and 14 guests