sharepoint2013 网站修改导航条标题 SuiteBartext
管理员身份进sharepoint powershell ,依次敲入搞定
- $app = Get-SPWebApplication -Identity http://yourwebsite.com
- $app.SuiteBarBrandingElementHtml = "<div class='ms-core-brandingText'>YOUR branded name HERE</div>"
- $app.Update()
将你的站点及内容替换红色部分