Hide page from home page header nav only

Permalink
Howdy!
I've got danielleach.net, and i'd like to hide a page from the home page header nav, so it doesn't show up as another black bubble along the header, but not have said page hidden from auto-nav menus elsewhere in the site, such as I have in my sidebar.
Is there a way to accomplish this?
If not, i'll just rearrange the pages in such a way as to accomplish my goal.

 
grosik replied on at Permalink Reply
grosik
If you know how to use ftp, basic html/php/css editing on concrete5 architecture do the following:

1. create new template for autonav block

2. uncomment this in view.php of your template
/*
   if ($ni->isHome) {
      //home page
      $classes[] = 'nav-home';
   }
   */


and in view.css put the code below:
.nav-home {display: none;}


3. on the homepage use the newly created template

good luck ;)