MiServer output pages to PDF for print
12 posts
• Page 2 of 2 • 1, 2
Re: MiServer output pages to PDF for print
Marco,
You can assign a bit of CSS to the button in order to prevent it from being printed.
This defines a class "no-print":
Assign that class to the button and it will show but not print.
Having a dedicated print style sheet is generally not a bad idea:
https://alistapart.com/article/goingtoprint/
You can assign a bit of CSS to the button in order to prevent it from being printed.
This defines a class "no-print":
- Code: Select all
@media print
{
.no-print, .no-print *
{
display: none !important;
}
}
Assign that class to the button and it will show but not print.
Having a dedicated print style sheet is generally not a bad idea:
https://alistapart.com/article/goingtoprint/
-
kai - Posts: 141
- Joined: Thu Jun 18, 2009 5:10 pm
- Location: Hillesheim / Germany
Re: MiServer output pages to PDF for print
Thanks Kay,
// Marco
// Marco
- Gantois
- Posts: 91
- Joined: Thu Apr 17, 2014 9:44 am
12 posts
• Page 2 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 1 guest
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group