Is it possible to customize or disable the printer-friendly CSS for my blog?
-
If I go to print my blog page, the “printer-friendly” print format is actually really mangled and looks quite bad. Is it possible to customize or disable the print CSS style?
The blog I need help with is: (visible only to logged in users)
-
Howdy,
You can’t disable it. Some themes have their own print CSS, but your’s is using our “global” print CSS.
You can modify it with your Custom Design upgrade using CSS.
Are you comfortable with CSS at all? If not, you can ask some questions in the CSS forum at https://en.forums.wordpress.com/forum/css-customization and receive a quote for more advanced customizations via http://en.support.wordpress.com/customize-my-site/request-theme-customization/
You can modify it by wrapping whatever changes you’d like to make in a media query in your Appearance->Customize->CSS page.
For example:
@media print { * { font-size: 500% !important; } h1 { color: red; } }would make all fonts on the page 500% bigger and change the Header 1 elements to red.
The original CSS is at http://s0.wp.com/wp-content/mu-plugins/global-print/global-print.css?m=1335386953g
If you have any questions, please let me know. Cheers!
-
- The topic ‘Is it possible to customize or disable the printer-friendly CSS for my blog?’ is closed to new replies.