I want this on my forum..

Zodiac

New Member
Im running my forum on vBulletin 3.7.1 and have the Greenfox skin installed. I recently added a Shop mod and i want everyone to see it. But when i added it this didn't appear in my skin.

ghfhgt8.png


I want that on my forum.

Thank you.

~Zodiac
 
You need to manually add the link into the navbar template. In your mod file there mite be a readme with instruction on how to do so. If not I will find a tut for you.
 
I managed to achieve this on my forum by copying the contents of the navbar template from one of my other skins and using it to replace the contents of the greenfox navbar template.
 
Skuxta said:
You need to manually add the link into the navbar template. In your mod file there mite be a readme with instruction on how to do so. If not I will find a tut for you.

Im stupid i need a tut. Thanks alot Skuxta

~Zodiac
 
1, what is the mod? so I know what link you need
2, post a copy of your navbar template & it will be edited
 
ACP>Styles&Templates>Style Manager>From your style dropdown, select "EDIT STYLES">Navigation/Breadcrumb Templates>Navbar

Add this code
Code:
<td class="vbmenu_control">
<a href="http://www.yourdomain.com/yourpage.php">SHOP</a></td>

Anywhere in between all of the other links between the calls I have listed below

Code:
<!-- nav buttons bar -->
<tr>
<td class="vbmenu_control">
<a href="http://www.yourdomain.com/yourpage.php">SHOP</a></td>
</tr>
	</table>
</div>
<!-- / nav buttons bar -->

Save the template and check your navbar, it's now a global link on your navbar.
 
Back
Top