Thank you for your help! 🙂
glee never mind, I just figured out (thanks to this thread) that replacing part of my code with this
<?php wp_list_pages('depth=1&title_li='); ?>
fixed it.
I’m having a similar issue with my site. For some reason I can get the link to appear on every page but the home page.
Upon recommendation of some support site I went to the bottom of the header.php page and added the following code after the reference to the home button.
<li<?php if (is_home()) { echo ' class="current_page_item"'; } ?>><a href="http://mywebsiteforum">Forum</a>
the instructions then said to make a similar change to a home.php but I don’t see a home.php listed in my theme pages.
See. example (www.moviestupidity.com) if you click on about, you see the forum link, but its not on the main page.