2012-03-21 29 views

回答

0

是否在您的網站上添加菜單項?使用HTML很簡單: 例如,原來的網站:

<html> 
    <head> 
    <!-- head content here --> 
    </head> 
    <body> 
    <ul> 
     <li><a href="/">Home</a></li> 
     <li><a href="/about">About</a></li> 
     <li><a href="/contact">Contact</a></li> 
    </ul> 
    </body> 
</html> 

就在 'UL' 添加一個新的 '禮',使它像下面這樣:

<html> 
    <head> 
    <!-- head content here --> 
    </head> 
    <body> 
    <ul> 
     <li><a href="/">Home</a></li> 
     <li><a href="/about">About</a></li> 
     <li><a href="/contact">Contact</a></li> 
     <!-- create other link from here --> 
     <li><a href="http://sitename.com/">Other Site</a></li> 
    </ul> 
    </body> 
</html> 

對不起,我沒有」注意你正在使用OrchardCMS〜這很容易,只需添加新的導航文件顯示: http://docs.orchardproject.net/Documentation/Navigation-and-menus

+0

我可以在代碼中執行此操作嗎?根據某些標準顯示或不顯示菜單項? – user471317 2012-03-21 15:52:03

相關問題