Hi, I am trying to add one particular blog page on the top navigation - the theme calls for categories and shows their links on the top navigation in horizontal row- I want to add this page after those categories links. Here is the header code which I m trying to tweak - <ul id="nav2" class="clearfloat"> <li><a href="<?php echo get_option('home'); ?>/" class="on">Home</a></li> <?php wp_list_categories('orderby=name&exlude=181&title_li='); $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<ul>"; wp_list_categories('orderby=id&show_count=0&title_li= &use_desc_for_title=1&child_of='.$this_category->cat_ID); echo "</ul>"; } ?> Code (markup): When I try to add this code for my page- <li><a href="http://myblogpage.com/blogpage">Recommended Products</a></li>; Code (markup): -- and add it after that categories code or the HOME page code, I get nothing changed on the blog. Any ideas...