PDA

View Full Version : Adding a new Tab/BUtton


stuky4ever
05-22-2009, 06:22 PM
Hello. I need to know which files from the template i need to edit to add new Buttons or Tabs such as the Top ones. Please Help. Thank You.

Seven Skins
05-22-2009, 07:30 PM
Depending on the design of your skin, You may need to edit header or navbar template.

.

--------------- Added 1243024421 at 1243024421 ---------------

To find the template to modify:

vBulletin Options > General Settings > Add Template Name in HTML Comments > Yes .
Then view the source code and you will see the name of template.

.

stuky4ever
05-22-2009, 08:44 PM
NVM Sorta got it. Problem now is Some buttons it doesnt show the button name. Example [FORUMS] [DOESNT SHOW] [USER CP]
It wont show the name of the button.

Code is...

<if condition="$show['member']">
<td width="85" height="34" class="css_nav"><a href="http://sourceban.net">$vbphrase[ban]</a></td>
</if>

Seven Skins
05-24-2009, 09:16 PM
Instead of phrase you use plain text.

<if condition="$show['member']">
<td width="85" height="34" class="css_nav"><a href="http://sourceban.net">Ban</a></td>
</if>