Quote Originally Posted by banswidthjunkie View Post
The (basic) rule is that if your file name is "bAdLy-nameD page" then you capitalise it: "BADLY-NAMED PAGE" and replace non-alphanumeric characters with "_": "BADLY_NAMED_PAGE", then prefix it with the word "FILENAME": "FILENAME_BADLY_NAMED_PAGE"

The next version which i am just putting the finishing tuoches to makes this clear.

The basic trick when dealing with any php website is if you want to edit a bit of generated code:
1) find the id of the closest tag with an id to the bit of code that you want to edit.
2) Search through the entire source code for this string (most text editors and dreamweaver can do this) hopefully the place you find this string will be near to the code you want to modify.

In your case try searching for "navMain" ;)
I'm getting closer to understanding this I was able to find the filename with the navMain ID in it. There is some logic there to check and see if the person is logged in or not and what to put on the nav page for either condition.

That leaves me with just one more file to find and edit. What is the path to the filename where I put this in?
$link_to_my_page = zen_href_link( FILENAME_MY_PAGE, '' );

If I know that, I think I can get everything to work. Thanks again for your patience with me on this.