[Support request] edit print styles

Home Forums Support [Support request] edit print styles

Home Forums Support edit print styles

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #329693
    Ray

    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

    #329716
    Tom
    Lead Developer
    Lead Developer

    Hi there,

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

    Let me know 🙂

    #329722
    Ray

    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

    #329979
    Tom
    Lead Developer
    Lead Developer

    Try this:

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

    Hi,

    I tried that but because I don’t use the header that didn’t work.
    I also tried not displaying #primary-menu and .main-nav but that didn’t work either.
    My page is here.
    http://locusonmain.com/web/daily-lunch-specials/

    Thanks

    #330242
    Tom
    Lead Developer
    Lead Developer

    Can you try this instead?:

    @media print {
        #site-navigation {
            display: none;
        }
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.