Thanks again to spiderr for guiding me through this one!
===!CREATING A CUSTOM DROP DOWN MENU===
To add a nice DROPDOWN CSS menu to tikipro's top nav bar
do the following:
*textCreate a folder called force in the themes folder
eg: yoursite/tikipro/themes/force
*Copy kernel/top_bar.tpl
*After the first {/foreach} currently line 16,
add the menu code.
__Example:__
{CODE()}
<li><a class="head" href="/Earth/">Earth</a>
<ul>
<li><a class="item" href="/Earth/Africa" >Africa</a></li>
<li><a class="item" href="/Earth/Antarctica" >Antarctica</a></li>
<li><a class="item" href="/Earth/Asia" >Asia</a></li>
<li><a class="item" href="/Earth/Caribbean" >Caribbean</a></li>
<li><a class="item" href="/Earth/Europe" >Europe</a></li>
<li><a class="item" href="/Earth/North_America" >North America</a></li>
<li><a class="item" href="/Earth/Oceania" >Oceania</a></li>
<li><a class="item" href="/Earth/South_America" >South America</a></li>
</ul>
{CODE}
4) Save your file and your menu shall appear!
--- for more information about the css code... see: http://www.htmldog.com/articles/suckerfish/dropdowns/
===!CREATING A CUSTOM DROP DOWN MENU===
To add a nice DROPDOWN CSS menu to tikipro's top nav bar
do the following:
*textCreate a folder called force in the themes folder
eg: yoursite/tikipro/themes/force
*Copy kernel/top_bar.tpl
*After the first {/foreach} currently line 16,
add the menu code.
__Example:__
{CODE()}
<li><a class="head" href="/Earth/">Earth</a>
<ul>
<li><a class="item" href="/Earth/Africa" >Africa</a></li>
<li><a class="item" href="/Earth/Antarctica" >Antarctica</a></li>
<li><a class="item" href="/Earth/Asia" >Asia</a></li>
<li><a class="item" href="/Earth/Caribbean" >Caribbean</a></li>
<li><a class="item" href="/Earth/Europe" >Europe</a></li>
<li><a class="item" href="/Earth/North_America" >North America</a></li>
<li><a class="item" href="/Earth/Oceania" >Oceania</a></li>
<li><a class="item" href="/Earth/South_America" >South America</a></li>
</ul>
{CODE}
4) Save your file and your menu shall appear!
--- for more information about the css code... see: http://www.htmldog.com/articles/suckerfish/dropdowns/