Hey guys, I am trying to make the navigation bar disappear on the homepage of the site. How do I edit the PHP file for the homepage. The template for the homepage is a custom template and I have tried <div id="masthead" style="display:none;"></div> in the custom template.php folder, but it is not disappearing. Thanks.
I would use something like this: <?php if (!is_front_page()){ ?> <div id="masthead">this won't be displayed on the homepage</div> <?php } ?> Code (markup):
Get the class for the page. You should see it near the top in firebug Then assuming it is page 24 add this to style.css .page-id-24 #masthead{display:none;}