• Hello,

    I just recently installed the Cleanr theme on my blog.
    I would like to remove the drop down menu for pages and have a horizontal page navigation menu in the same place where ‘pages, categories, rss’ is.

    Is this possible?
    I am not a fan of the drop down menu but love this clean theme.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Anything’s possible.

    In your header.php file find this string of code near the bottom:

    <ul id="nav">
    <?php wp_list_pages('title_li=Pages'); ?>
    <?php wp_list_categories('title_li=Categories'); ?>
    <li class="last-child"><a href="<?php bloginfo('rss2_url'); ?>" class="rss">RSS</a></li>
    </ul>

    replace it with

    <ul id="nav">
    <li><a title="Name" href="https://yourblog.com/yourpage">Name</a></li>
    <li><a title="Name" href="https://yourblog.com/yourpage">Name</a></li>
    <li><a title="Name" href="https://yourblog.com/yourpage">Name</a></li>
    </ul>

    you will, of course, want to change ‘youblog.com/yourpage’ to the url of the page you want to link to and change ‘Name’ to the text you want displayed. <a title=”Name” determines what appears when you hover over the link.

    I believe you can also delete the js folder from your theme now if your not using it anywhere else or you could leave it in case you change your mind.

    Thread Starter xlerate

    (@xlerate)

    Thank you, I will give this a shot this afternoon.
    Sincerely appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Nav Bar to pages bar?’ is closed to new replies.