Hi,
I have a very tricky skin to code with a completely different location of the navigation links. With old (version 3.8, par example) it was simple, cause we had all links coded into templates header and navbar, and so we can move them with if/else and style differently.
how can I do it now? I think they are removed from the templates now, so to style and arrange links I need to edit php files?
I am talking about links
New Posts, Private Messages, FAQ, Calendar, Community , Forum Actions , Quick Links
If I am not wrong all we have for them in templates:
Code:
<vb:if condition="$tab['children'] AND $selected == $tabid">
<ul class="floatcontainer">
<vb:each from="tab.children" value="link">
<vb:if condition="$link['children']">
<li class="popupmenu" id="{vb:raw link.name}">
<a href="javascript://" class="popupctrl">{vb:raw link.title}</a>
<ul class="popupbody popuphover">
<vb:each from="link.children" value="sublink">
<li id="{vb:raw sublink.name}"><a href="{vb:raw sublink.url}">{vb:raw sublink.title}</a></li>
</vb:each>
{vb:raw template_hook.navbar_after_sublinks}
</ul>
</li>
<vb:else />
<vb:if condition="$link['type'] == 'link'">
<li id="{vb:raw link.name}"><a href="{vb:raw link.url}">{vb:raw link.title}</a></li>
</vb:if>
</vb:if>
</vb:each>
{vb:raw template_hook.navbar_after_links}
</ul>
</vb:if>
If someone knows where to find more detailed code for these links let me know
Thanks