删除SharePoint页面顶部的大标题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除SharePoint页面顶部的大标题相关的知识,希望对你有一定的参考价值。
我想知道如何根据SharePoint 2013中的文件名删除标题。移动到SharePoint 2013后,它确实破坏了整个布局...
我要删除的实际内容:http://i.imgur.com/l4cEBOO.png
答案
方法1(适用于所有页面,但是您的网站没有标题,链接将不会在网站导航中具有用户友好名称!) - 个人不推荐
- 导航到“网站设置”。
- 在“外观”下,单击“标题,说明和徽标”链接。
- 将标题清空,单击确定。这将使您的网站标题为空。
方法2(仅适用于您希望隐藏标题的页面)
- 编辑页面
- 添加内容编辑器Web部件/脚本编辑器Webpart
- 在webpart中添加以下代码
< style>
#DeltaPlaceHolderPageTitleInTitleArea {
display: none;
}
< /style>
另一答案
在发布:EditModePanel标记上方的页面布局中添加以下行。
<script type="text/javascript">
function hidePageTitle() {
var elem = document.getElementById('pageContentTitle');
elem.style.display = 'none';
}
_spBodyOnLoadFunctionNames.push("hidePageTitle");
</script>
另一答案
打开SharePoint Management Shell并运行以下命令:
$webApp = get-spwebApplication "http://spwebappurl"
$webApp.SuiteBarBrandingElementhtml = "<div class='ms-core-brandingText'>My Intranet Title</div>"
$webApp.Update()
另一答案
使用下面的CSS代码您可以删除页面或站点磁贴标题。
pageTitle
< style type="text/css">
{
display:none;
}
</style>
以上是关于删除SharePoint页面顶部的大标题的主要内容,如果未能解决你的问题,请参考以下文章
markdown 从SharePoint中的标题中删除“页面”