Disable the header and site logo for a specific page?

  • Author
    Posts
  • #41731

    Can I disable the header and turn off the site title/logo for a specific page? If so, how?

    Thanks,

    Paul

    #41785
    Zed
    Cryout Creations mastermind

    Using custom CSS:

    body.page-id-ID header {
        display: none;
    }

    Replace ID with the numberic ID value of your page.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #41819

    I am wondering if I can just disable the header image, not the site ID (still want site title and menu) for specific pages. All of my pages have the header image and I’d like it only to be on some of them.

    Is that similar to the above? I thought the above was also site title, which I want to keep…

    Thank you!

    Website: chendricks.org

    #41929
    Zed
    Cryout Creations mastermind
    body.page-id-ID #header-image-main-inside {
        display: none;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #41940

    Thank you so much!

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘Disable the header and site logo for a specific page?’ is closed to new replies.