Quote:
Originally Posted by pein87
I have a question how do you add a new link in the navbar i followed the instructions but the link wont show.
|
Honestly, I am unsure why that is not working as I have never tried to put links up there even when it was for 3.5. I am looking into it though to see if I can find the issue.
If you want to add another navbar across the top of the welcome box (spot where members see the welcome and their PM's) then here is where to do that.
Go To: Styles & Templates > Style Manager > Edit Style (Yellowcars) > Navigation/Breadcrumb Templates > navbar
find:
Code:
<!-- breadcrumb, login, pm info -->
add this code above:
Code:
<!-- additionalnavbar -->
<div align="center">
<table id="navstyle" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr align="center">
<td class="vbmenu_control"><a href="URL/LINK">Description of Link</a></td>
<td class="vbmenu_control"><a href="URL/LINK">Description of Link</a></td>
<td class="vbmenu_control"><a href="URL/LINK">Description of ink</a></td>
<td class="vbmenu_control"><a href="URL/LINK">Description of ink</a></td>
</tr>
</table>
</div>
<!-- / additionalnavbar -->
You can take away or add more as needed.