• Resolved blloyd-wp

    (@blloyd-wp)


    I wish to set up my pages so that they cannot be printed. Help please.

Viewing 2 replies - 1 through 2 (of 2 total)
  • WPyogi

    (@wpyogi)

    There’s really no way to do that. As soon as someone views a page on your site, a copy is downloaded to their local computer in the browser cache. So you don’t have control over that.

    Thread Starter blloyd-wp

    (@blloyd-wp)

    Sorry to be a pest, but in the end I solved this issue. Yes, you can stop your audence from printing content.

    In your style.css file place this code.

    /* Print Style Sheet */
    @media print {
    body { background:white; color:black; margin:0 }
    #header { display:block }
    #content { display:block }
    #comments { display:block }
    #sidebar { display:block }
    #footer { display:block }
    }

    This is just one way to do it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blocking page printing’ is closed to new replies.