• Resolved spbilleaud

    (@spbilleaud)


    Can anyone tell me (newbie) how to hide the header text (including site title and tagline) and the menu bar on only one of my four pages?

    The page on which I want this information obscured is not the home page. I have uploaded a twenty-twelve child theme but this particular one doesn’t appear to have automated that function.

    I am open to coding help or changing my theme, if anyone knows of another that would allow me to do this by way of a checkbox option.

    Please help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    you can do this easily. First find your specific page id for the page you would like to hide the header text. It is located in the body tag and it looks something like this:

    <body class=”page page-id-49 page-template-default logged-in admin-bar custom-font-enabled single-author customize-support”>

    In this example the page id is page-id-49. So once you know what your page id is add this to your child style.css:

    .page-id-49 .site-header {
        display: none;
    }

    Just replace page-id-49 with your page id.

    Thread Starter spbilleaud

    (@spbilleaud)

    Thank you! That totally worked.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Header Text and Menu on One Page Only in Twenty-Twelve child theme’ is closed to new replies.