PDA

View Full Version : Erasing community link community link...



makbal
Sun 8th Feb '09, 11:34am
I want to erase community link community link and help link. How can I do that without any error in my forum.

Colin F
Sun 8th Feb '09, 12:01pm
Edit the navbar template and remove the links there.

makbal
Sun 8th Feb '09, 4:15pm
ok, but which codes I will erase in navbar template

Colin F
Mon 9th Feb '09, 8:08am
Replace this code:


<td class="vbmenu_control"><a rel="help" href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<if condition="$show['communitylink'] AND $show['popups']">
<td class="vbmenu_control"><a id="community" href="$show[nojs_link]#community" rel="nofollow" accesskey="6">$vbphrase[community]</a> <script type="text/javascript"> vbmenu_register("community"); </script></td>
<else />
<if condition="$show['memberslist']">
<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
</if>
<if condition="$show['quick_links_groups']">
<td class="vbmenu_control"><a href="group.php?$session[sessionurl]">$vbphrase[social_groups]</a></td>
</if>
</if>with:

<if condition="$show['memberslist']">
<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
</if>
<if condition="$show['quick_links_groups']">
<td class="vbmenu_control"><a href="group.php?$session[sessionurl]">$vbphrase[social_groups]</a></td>
</if>

makbal
Mon 9th Feb '09, 11:15am
thank you very much, one more question I have. In the navigation bar, how can I do color change of a certain link...

Colin F
Tue 10th Feb '09, 3:04am
The text color?

Edit the link, adding the red code as below:

<if condition="$show['memberslist']">
<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]" style="color:red;">$vbphrase[members_list]</a></td>
</if>