• Resolved mickwarnes

    (@mickwarnes)


    I created a sample page using the Sidebar/Content template and both the sidebar and the content print on different pages. The preview shows the same.
    I have tried IE, Firefox and Chrome as well as different printers but with the same result.
    Is it a simple CSS issue?
    Thanks in advance
    Mick

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Mick,

    Print as in “printing the page”?

    Thanks,
    Emil

    Thread Starter mickwarnes

    (@mickwarnes)

    Yes. For example, on the first page I get the header, navigation, sidebar and breadcrumbs in the positions they should be. Then page stops there. The second page shows the content in it’s right position. I could just remove the sidebar from the CSS-print, but wondered why it doesn’t all print altogether.
    BTW – the home page prints with all the elements in the correct place.
    Thanks
    Mick

    Hi Mick,

    No need and let me direct you to some great stuff.

    In your Child Theme, as well as the Parent Theme there’s a @media print CSS at-rule which you can customize any way you like.

    Let’s say that we’re removing the sidebar from the print, this is what needs to be done:

    @media print {
    
        .widget-wrapper {
            display: none;
    }

    As far as half page display, I would guess it’s the printer setup. Mine would show all by default. Also see.

    Thanks,
    Emil

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sidebar /Content print on different pages’ is closed to new replies.