The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
acade has dissapeared
i updated my skin to a different one but now the arcade link has gone fromthe navbar any ideas how i get it back? i know its a newbie question but i am a newbie sorry if this is wrong section
|
#2
|
|||
|
|||
this is simple... take back the archive containing the arcade script, and read the docs for installation... there will be a detail on how to add the arcade link in your navbar.
|
#3
|
|||
|
|||
thanks for a quick response will do that now
--------------- Added [DATE]1200931278[/DATE] at [TIME]1200931278[/TIME] --------------- ok done that but in the install it says find something in my navbar template and its no where to be found so i pasted it in somewhere near the top of the template now i have a white arcade text link under my navbar and it looks odd as it don't match the colour of the forum if im allowed to post a link i will so you can see what im working with? |
#4
|
|||
|
|||
Generally, things in the navbar, in the form of actual "buttons," go in the section which starts with:
Code:
<!-- nav buttons bar --> For example, the first entry in a stock 3.6.8 navbar for this section is: <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px"> <tr align="center"> <if condition="$show['member']"> <td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td> </if> <if condition="$show['registerbutton']"> <td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td> </if> Unless you have Projects and/or Blogs installed, the next "stock" button would be: Code:
<!-- <td class="vbmenu_control"><a href="faq.php?$session[sessionurl]" ">$vbphrase[faq]</a></td> --> What you should notice, is that each entry has the following configuration: a reference to a .php file and a $vbphrase. Code:
<td class="vbmenu_control"><a href="faq.php?$session[sessionurl]" accesskey="5">$vbphrase[faq]</a></td> --> I would assume, without having seen your Arcade addon, that it would have similar language to add it's link to the navbar. This is just a sample, but probably looks something similar to your navbar code: Code:
<td class="vbmenu_control"><a href="arcade.php$session[sessionurl_q]">$vbphrase[Arcade]</a></td> You can adjust it's position shown on the navbar by where you place it among the existing code list of "buttons" already on the navbar. Again, this is just general information on how the navbar is configured, without seeing the code for your Arcade plugin. Hope that helps. Regards, |
#5
|
|||
|
|||
Some designers put the navbar buttons in the header template. What is the link to your site?
|
#6
|
||||
|
||||
@slappy:
Please wrap the codes in the code tag. |
#7
|
|||
|
|||
My Bad! :erm:
Code wrapped in code tags now. Regards, |
#8
|
|||
|
|||
Quote:
|
#9
|
||||
|
||||
I am assuming then the code must be in the header template, since the links are right at the top of your forum, even in the coding. Look for this in a template search:
memberlist.php And then add: Code:
<td class="alt5"><a href="arcade.php">Arcade</a></td> Code:
Member List/Search/whatever</a></td> |
#10
|
|||
|
|||
Quote:
Look for this in the header template, Code:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|