Create a new tab on the main menu on my jamroom site
Using Jamroom
The easiest way is to go into the menu.tpl file in your skin
/skins/jrProJamLight/menu.tpl
and add another entry to the list like this.
This is what it will look like now:
{foreach from=$_items name="loop" item="entry"}
{assign var="oc" value=""}
{if isset($entry.menu_onclick)}
{assign var="oc" value=" onclick=\"`$entry.menu_onclick`"}
{/if}
{if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
{if is_numeric($entry.menu_function_result)}
<li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
{else}
<li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
{/if}
{else}
<li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
{/if}
{/foreach}
so add this at the bottom after that last {/foreach}
<li><a href="{$jamroom_url}/galleries">galleries</a></li>
Then reset the caches and it should be good to go.
--edit--
Just to be clear, the full code would look like this now:
{foreach from=$_items name="loop" item="entry"}
{assign var="oc" value=""}
{if isset($entry.menu_onclick)}
{assign var="oc" value=" onclick=\"`$entry.menu_onclick`"}
{/if}
{if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
{if is_numeric($entry.menu_function_result)}
<li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
{else}
<li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
{/if}
{else}
<li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
{/if}
{/foreach}
<li><a href="{$jamroom_url}/galleries">galleries</a></li>
updated by @michael: 12/02/13 06:37:13PM