2017-05-09 32 views

回答

1

您的論壇VB運行4.1.11 - 在4.2.0版本中增加的導航管理。您應該升級到4.2.x才能訪問它。在4.1.11中,所有更改都需要手動編輯或插件。

vBulletin 4.2 Release Note

該版本包含:

  • 活動流
  • 導航管理
  • 成員誰訪問過今天

UPDATE:

如果你不想升級vBulletin版本,你應該做的手工 ,它取決於你的風格

例如一些默認的樣式導航欄是在頭文件 和您可編輯:

Admincp > Styles & Templates > Style Manager > Your Template > Edit Templates > header 

如果你想知道導航欄的確切路徑,你的風格,你可以搜索在style manager搜索表單你的風格的導航欄的一些代碼

導航欄代碼的exaple:

<div class="cnavbar"> 
    <center> 
     <div id="cnavtabs" class="cnavtabs"> 

      <ul> 
       <li><a href="Your URL">Link Text</a></li> 
       <li><a href="Your URL">Link Text</a></li> 
       <li><a href="Your URL">Link Text</a></li> 
       <li><a href="Your URL">Link Text</a></li> 
       <li><a href="Your URL">Link Text</a></li> 
      </ul> 

     </div> 
    </center> 
</div> 

,也許CSS代碼:

.cnavbar 
{ 
    width:100%; 
    height:32px; (Change Height Here) 
    background-color:#150517; (Change Background Color Here) 
    border-bottom:1px solid #666; 
} 
#cnavtabs 
{ 
    width:960px; (Change width Here) 
    height:100%; 
} 

2.在另一方面,如果你不想做手工,你應該找到或請求國防部或插件,支持vBulletin 4.1.x

這是一個國防部爲所有4.xx版本的vBulletin創建自定義導航

[DBTech] DragonByte Custom Navigation v1 (vB4)

希望能幫助你

+0

如果我不想更新呢? –

+0

@DanyalSandeelo我更新我的答案,並建議兩種方式來做到這一點 –

+0

我已經做到了。我只是想知道確切的答案。通過表決並標記爲已付出的努力。 –