
Originally Posted by
leon2lil
Hi,
Thanks for the help before...
Is there a way to add links next to categories on that nav bar?
I.e having categories then like home contact us about us
Yes, you can use Ez-Pages header settings. they will NOT have drop downs
For more complicated items.
Otherwise you can modify the includes/templates/tableau/common/tpl_header.php
in the
HTML Code:
<ul id="nav-menu">
you can add li's
example:
for just a single item add:
HTML Code:
<li>
<a href="page_link"><span>PAGE NAME HERE</span></a>
</li>
for drop downs
HTML Code:
<li>
<a href="top_page"><span>TOP</span></a>
<ul class="sub-menu">
<li><a href="page_link1"><span>PAGE NAME HERE 1</span></a></li>
</ul>
</li>
for dropdowns with dropdowns
HTML Code:
<li>
<a href="top_page"><span>TOP</span></a>
<ul class="sub-menu">
<li><a href="page_link1"><span>PAGE NAME HERE 1</span></a>
<ul class="sub--sub-menu">
<li><a href="page_link1">PAGE NAME HERE 1</a></li>
</ul>
</li>
</ul>
</li>
Note the span tag on the first one
Bookmarks