Editing the Navigation block

Permalink 1 user found helpful
Hi, I'm new to concrete and I know virtually nothing about PHP. I have 2 questions.

1. How can I move the Navigation or menu block in the header area to a position beneath the page title?

2. how do I add a page without having it added beneath a system page? In other words, I want the page to show in the navigation/menu area and not in the side bar of a system page.

Thanks in advance

 
12345j replied on at Permalink Reply
12345j
I assume you're using the default theme. Many different themes will offer this automatically, but if you want to use the default theme go into root/concrete/themes/default and then look for this code
<h1 id="logo"><!--
         --><a href="<?php echo DIR_REL?>/"><?php 
            $block = Block::getByName('My_Site_Name');  
            if( $block && $block->bID ) $block->display();   
            else echo SITE;
         ?></a><!--
      --></h1>
and replace that with this
<h1 id="logo"><!--
         --><a><?php
    $a = new Area('Main');
    $a->display($c);
?></a><!--
      --></h1>

Now you should have an editable site title and can insert the header nav below.
2nd, all pages have to be added beneath home, but you can make an is featured attribute, apply it to all the pages you want in the sidebar, and then edit the autonav/pagelist there to only display featured pages.