Viewing 1 replies (of 1 total)
  • Hi,

    Sorry, I can’t access your site, I receive a forbidden message, maybe you have some IP/country restrictions enabled?

    You could possibly hide the header with CSS though, but without seeing the site I can only guess at the CSS to use.

    .home-page .header {
        display: none;
    }

    But that depends on your theme, so that might not work on your theme.

    An alternative would be to edit the header code in the header.php of your theme and add a condition around it.

    For example

    <?php if(!is_front_page()) { ?>
        <div id="header">Your header code here</div>
    <?php } ?>

    Hope this helps

Viewing 1 replies (of 1 total)

The topic ‘How to enable header except in front page’ is closed to new replies.