• How can I style this for print? I’m using the imageless version.

    According to wordpress, I change this code but I can’t find it.

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>”
    type=”text/css” media=”screen” />

    Please help.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to create a print.css sheet and upload that to your theme’s folder. Then add:

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/print.css" media="print" />

    to your theme’s header.php file between <head> and </head>.

    Thread Starter faizal0908

    (@faizal0908)

    Hello and thank you for such a quick response.

    I will do that. Just one question…. do I need to edit or delete any codes from the current style sheet at all or just add

    <link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘template_directory’); ?>/print.css” media=”print” />

    between the <head> and </head>.

    You need to create a complete new CSS file called print.css.

    https://www.webcredible.co.uk/user-friendly-resources/css/print-stylesheet.shtml

    BigMonty110

    (@bigmonty110)

    Has anyone created a nice arclite print style sheet they would like to share?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Styling For Print.’ is closed to new replies.