MOSS 2013研究系列---修改默認Logo

  開發SharePoint2013 的時候,系統裏面有一個「SharePoint」 的logo,客戶不多不滿意,咱們的系統不能出現產品的名稱,以下圖:web

             

 

 

 

 

 

咋麼修改呢,諮詢了廣大網友,給出了一個解決方案:app

  1. launch SharePoint 2013 Management Shell in Admin mode
  2. type the following: $app = Get-SPWebApplication -Identity http://yourwebsite.com
  3. hit enter and next type this: $app.SuiteBarBrandingElementHtml = "<div class='ms-core-brandingText'>YOUR branded name HERE</div>"
  4. hit enter and next type this: $app.Update()

既然可以經過PowerShell命令行修改,估計是一個控件或者DelegateControl ,根據這個方向,去SharePoint的文件夾,果真很容易的就找到了這個地方,裏面有一個DelegateControl控件<SharePoint:DelegateControl id="ID_SuiteBarBrandingDelegate" ControlId="SuiteBarBrandingDelegate" runat="server" />,直接進行外科手術,刪除該控件,手工寫入本身的<div class="ms-core-brandingText">XXXXX系統</div>,或者直接用圖片替換,呵呵。ui

   修改的效果就不顯示了,能夠本身爲所欲爲了。this

相關文章
相關標籤/搜索