Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi gina.ekirk,

    This can be done using CSS; however, it would only hide the header image element. If you were to disable your stylesheet, the header container would still exist. If you wanted to do this through CSS:

    Go to your stylesheet and add:

    .page-id-1230 #header {
      display: none;
    }

    This will ‘hide’ the #header from http://isshereally.com/learn-to-lunch/

    If you want completely hide the header container, for a specific page, then you could do this:

    Edit the fullwidth/header template and surround the #header in a simple if statement:

    Example:

    <?php if ( !is_page( 'learn-to-lunch' ) ) : ?>
    <header id="header">
    ...
    </header>
    <?php endif; ?>

    This says: if the current page is not learn-to-lunch then display the header.

    Thread Starter gina.ekirk

    (@ginaekirk)

    This worked, thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing header on a single page’ is closed to new replies.