When you create a new page does it not show in the same place home and about shows?
heres the link if im aloud to post http://www.beckyscause.org.
What i would like is the “technical” linkpage at the top to be added to where about and home are now. Really I want about and home and like 3 other static pages to be shown in that area. Hopefully this makes sense.
I don’t use that theme, but from a quick look, it seems the categories are being listed in the navbar above the post and your pages are listed in the upper-right of the header. I don’t see an option in the theme to change this through wp admin, so you can change it by editing your header.php file. Find the following:
<ul id="nav">
<li><a href="<?php echo get_option('home'); ?>">Home</a></li>
<?php wp_list_categories('sort_column=name&title_li=&depth=2'); ?>
</ul>
and change that wp_list_categories line so it looks like this:
<ul id="nav">
<li><a href="<?php echo get_option('home'); ?>">Home</a></li>
<?php wp_list_pages('depth=1&title_li=0&sort_column=menu_order'); ?>
</ul>
If you don’t want the pages listed at the upper-right of the header, then you would need to delete/change that code.
Seems this option should be provided in the theme options, but I just don’t see it…if I’m missing it somewhere, maybe someone else can post and let us know.
Perfect thats what I needed!thanks so much.
You’re welcome…glad you got it fixed.