Site logo

Archived topic

edit print styles

5 replies · Started by Ray on June 6, 2017

Viewing posts 1–6 of 6

I installed the Generatepress child theme.
I like the existing print style but I just want to remove the mobile print menu that currently shows up on top.

Can you advise on how to do that?

Thanks

Hi there,

So you're wanting to hide the mobile menu button while printing the page?

Let me know :)

No, I want to print the page. It's a food menu. When printing the 3 dash mobile menu icon and the Menu header shows up. I want the users to print the page without those things on top. Thanks

Try this:

@media print {
    .menu-toggle,
    #mobile-header {
        display: none;
    }
}

Can you try this instead?:

@media print {
    #site-navigation {
        display: none;
    }
}
This archived topic is closed to new replies.