search
HomeCMS TutorialWordPressCreate a Customized Print Stylesheet in Minutes

Create a Customized Print Stylesheet in Minutes

You’ve seen it before: you designed a beautiful layout and someone walks into your office with a print off and you cringe at the site of your hard work horrifically misrepresented by the printer. Printed versions of a web design are rarely what you’d expect. They take some additional tweaking and some staging. But, an understanding of how to set up a print view so that content comes out as expected is not too tough once you get the hang of it. In this article, I’ll show you how to set up a stylesheet just for printing off your content on a website. I’ll be using a WordPress site as a starting point, because it’s such a popular framework, but this will work for any site so long as you apply the same principles.
Quick note: there’s no easy way to make web to print perfect. You have to jump in there and work through each element you want to tailor. I start by going to a page and printing it to see what I’m starting with. Then, I break each element or structural section down by what I need and what needs to change. It takes time, but it’s worth it.

Do You Need a Print Version?

The first thing I ask myself before building out a printed version of a site is whether or not I even need one. The meticulous designer in me tends to kick in and I lean towards “yes” in most cases. But, often there’s just not a need for a print stylesheet, depending on the nature and purpose of your website. Also, when people print a page off your site, what is their goal? Often, they just want your content in hand and that’s all — they don’t want all the graphics, pretty layouts, headers, sidebars, and the like. (And, they may not want to use their expensive ink on nonessential elements.) So, consider what is actually needed. I always convert my text to black so that the printer understands that no shading is necessary (which is a big ink saver). I also change over from font sizes in pixels to points. If you’re trying to match font sizes, this can be a bit of a challenge, but here’s a slick chart to help you convert quickly from px to pt assuming you have a base font size of 16px:
  • Pixels => Points
  • 6px => 5pt
  • 7px => 5pt
  • 8px => 6pt
  • 9px => 7pt
  • 10px => 8pt
  • 11px => 8pt
  • 12px => 9pt
  • 13px => 10pt
  • 14px => 11pt
  • 15px => 11pt
  • 16px => 12pt
  • 17px => 13pt
  • 18px => 14pt
  • 19px => 14pt
  • 20px => 15pt
  • 21px => 16pt
  • 22px => 17pt
  • 23px => 17pt
  • 24px => 18pt

Targeting Your Content

WordPress typically has a built-in structure that looks like this:
  1. header
  2. content
  3. comments
  4. sidebar
  5. footer
Every page has these structural elements that you can easily target with CSS. Even if your site doesn’t have this exact structure, the key is to simply customize your print stylesheet for your purposes. Target each structure in CSS using #header for those sections with an ID or .header if it’s a class. Lastly, and possibly most importantly, we’re going to be using the @media print CSS to define when certain CSS styles are applied properly. For example, to remove all content from your print styles, you would do something as simple as this in your style.css: [sourcecode language=”css”] @media print { #header {display:none;} #content {display:none;} #comments {display:none;} #sidebar {display:none;} #footer {display:none;} .site-description {display:none;} .site-title {display:none;} } [/sourcecode] This worked for the Twenty Twelve theme for WordPress and gives me a nice, clean blank slate to start with. If you’re struggling to remove a straggler element, the easiest thing to do is right-click the element in your browser and find it in your source document. Chrome has the “Inspect Element” feature which jumps right to the code for that element, making it very easy to find the offending element. Look for either the id or class definition and then target it accordingly. In this example, we may have had this straggler popping up in our prints. Here you can see the ID: Create a Customized Print Stylesheet in Minutes We can now target this element with the following CSS: [sourcecode language=”css”] #contact-popup {display:none;} [/sourcecode]

Page Breaks

Printers break your content up into pages, assuming you have more than one page to print. You can tell the browser to avoid page breaks at certain points. You can read all about page breaks in CSS at the W3.org page. In short, your options are as follows:
  • page-break-before: always | avoid — always/avoid page breaks before the item
  • page-break-after: always | avoid — always/avoid page breaks after the item
  • page-break-inside: always | avoid — always/avoid page breaks in the middle of the item
Bear in mind that page breaks only apply to block content. A common example is a list — you may want to make lists blocks and then prevent page breaks happening in the middle of a list. The exception is text, which you can define as a block and then use the page breaks to change how it will print, but typically text should flow and you can allow the browser to figure out where to place it.

Sample Case

Now that we have a blank slate, let’s start adding the structural pieces that we actually want to display when printed. The content section is an obvious candidate, so let’s add it back in and convert the paragraph font size to points: [sourcecode language=”css”] @media print { #content p { font-size:11pt; color: black; }#content img { display:block; page-break-after: avoid; page-break-inside: avoid; } #content ul, li { display:block; page-break-inside:avoid; } #header {display:none;} #comments {display:none;} #sidebar {display:none;} #footer {display:none;} .site-description {display:none;} .site-title {display:none;} } [/sourcecode] I removed the display:none; content CSS and converted our paragraph text from 14px to 11pt. You can go through each element of your page and customize each just for printing with this methodology.

Wrap Up

Going from web to print can be frustrating, but the @media print media query allows us to get very targeted with how what elements get printed and how they get printed. There’s no real shortcut. If you need your site to look good in print, you’re likely going to have to create a separate CSS definition on a per element level until it’s perfect. Are print stylesheets part of your standard design process, or do you consider them an extra, nice-to-have addition to a thoroughly-designed website?

Frequently Asked Questions about Creating a Customized Print Stylesheet

What is the importance of creating a print stylesheet?

A print stylesheet is crucial for providing a printer-friendly version of your webpage. It allows you to control how the page looks when printed, removing unnecessary elements like navigation menus, background colors, and advertisements. This not only saves ink but also ensures that the printed version focuses on the essential content, making it easier to read and understand.

How can I hide certain elements when printing a webpage?

You can hide specific elements when printing a webpage by using the ‘display: none’ property in your print stylesheet. For instance, if you want to hide the navigation menu, you would target the element that contains the menu and set its display property to none. This will ensure that the element is not printed.

Can I change the font size and color in the print version of a webpage?

Yes, you can change the font size and color in the print version of a webpage. You can do this by targeting the body element in your print stylesheet and setting the desired font size and color. This can be useful if you want to ensure that the printed version of your webpage is easy to read.

How can I create a separate print stylesheet?

You can create a separate print stylesheet by using the ‘media’ attribute in the link element that references your stylesheet. The media attribute should be set to ‘print’, indicating that the stylesheet should be used when printing the webpage. This allows you to have one stylesheet for the screen display and another for the print version.

Can I control the page breaks in the print version of a webpage?

Yes, you can control the page breaks in the print version of a webpage. You can do this by using the ‘page-break-before’ and ‘page-break-after’ properties in your print stylesheet. These properties allow you to specify where page breaks should occur, helping to prevent awkward breaks in the middle of your content.

How can I test my print stylesheet?

You can test your print stylesheet by using the print preview feature in your web browser. This will show you how your webpage will look when printed, allowing you to make any necessary adjustments to your print stylesheet.

Can I include headers and footers in the print version of a webpage?

Yes, you can include headers and footers in the print version of a webpage. You can do this by using the ‘position: fixed’ property in your print stylesheet. This will ensure that the headers and footers appear on every printed page.

How can I change the layout of a webpage for printing?

You can change the layout of a webpage for printing by using the ‘float’ property in your print stylesheet. This allows you to control the positioning of elements on the page, ensuring that they are arranged in a way that makes sense when printed.

Can I control the margins and padding in the print version of a webpage?

Yes, you can control the margins and padding in the print version of a webpage. You can do this by using the ‘margin’ and ‘padding’ properties in your print stylesheet. This allows you to ensure that your content is properly spaced and easy to read when printed.

Can I use images in the print version of a webpage?

Yes, you can use images in the print version of a webpage. However, you should be mindful of how they will look when printed. You may want to remove background images and ensure that any important images are clear and easy to see in black and white. You can control the display of images using the ‘display’ property in your print stylesheet.

The above is the detailed content of Create a Customized Print Stylesheet in Minutes. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Create WordPress Plugins With OOP TechniquesCreate WordPress Plugins With OOP TechniquesMar 06, 2025 am 10:30 AM

This tutorial demonstrates building a WordPress plugin using object-oriented programming (OOP) principles, leveraging the Dribbble API. Let's refine the text for clarity and conciseness while preserving the original meaning and structure. Object-Ori

How to Pass PHP Data and Strings to JavaScript in WordPressHow to Pass PHP Data and Strings to JavaScript in WordPressMar 07, 2025 am 09:28 AM

Best Practices for Passing PHP Data to JavaScript: A Comparison of wp_localize_script and wp_add_inline_script Storing data within static strings in your PHP files is a recommended practice. If this data is needed in your JavaScript code, incorporat

How to Embed and Protect PDF Files With a WordPress PluginHow to Embed and Protect PDF Files With a WordPress PluginMar 09, 2025 am 11:08 AM

This guide demonstrates how to embed and protect PDF files within WordPress posts and pages using a WordPress PDF plugin. PDFs offer a user-friendly, universally accessible format for various content, from catalogs to presentations. This method ens

Is WordPress easy for beginners?Is WordPress easy for beginners?Apr 03, 2025 am 12:02 AM

WordPress is easy for beginners to get started. 1. After logging into the background, the user interface is intuitive and the simple dashboard provides all the necessary function links. 2. Basic operations include creating and editing content. The WYSIWYG editor simplifies content creation. 3. Beginners can expand website functions through plug-ins and themes, and the learning curve exists but can be mastered through practice.

Why would anyone use WordPress?Why would anyone use WordPress?Apr 02, 2025 pm 02:57 PM

People choose to use WordPress because of its power and flexibility. 1) WordPress is an open source CMS with strong ease of use and scalability, suitable for various website needs. 2) It has rich themes and plugins, a huge ecosystem and strong community support. 3) The working principle of WordPress is based on themes, plug-ins and core functions, and uses PHP and MySQL to process data, and supports performance optimization.

Is WordPress still free?Is WordPress still free?Apr 04, 2025 am 12:06 AM

The core version of WordPress is free, but other fees may be incurred during use. 1. Domain names and hosting services require payment. 2. Advanced themes and plug-ins may be charged. 3. Professional services and advanced features may be charged.

How much does WordPress cost?How much does WordPress cost?Apr 05, 2025 am 12:13 AM

WordPress itself is free, but it costs extra to use: 1. WordPress.com offers a package ranging from free to paid, with prices ranging from a few dollars per month to dozens of dollars; 2. WordPress.org requires purchasing a domain name (10-20 US dollars per year) and hosting services (5-50 US dollars per month); 3. Most plug-ins and themes are free, and the paid price ranges from tens to hundreds of dollars; by choosing the right hosting service, using plug-ins and themes reasonably, and regularly maintaining and optimizing, the cost of WordPress can be effectively controlled and optimized.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),