我想知道如何根据SharePoint 2013中的文件名删除标题。移动到SharePoint 2013后,它真的会破坏整个布局...
我要删除的实际内容: http://i.imgur.com/l4cEBOO.png
答案 0 :(得分:3)
方法1(适用于所有页面,但您的网站没有标题,链接将不会在网站导航中具有用户友好名称!) - 个人不推荐
方法2(仅适用于您希望隐藏标题的页面)
< style>
#DeltaPlaceHolderPageTitleInTitleArea {
display: none;
}
< /style>
答案 1 :(得分:0)
在发布:EditModePanel标记上方的页面布局中添加以下行。
<script type="text/javascript">
function hidePageTitle() {
var elem = document.getElementById('pageContentTitle');
elem.style.display = 'none';
}
_spBodyOnLoadFunctionNames.push("hidePageTitle");
</script>
答案 2 :(得分:0)
打开SharePoint Management Shell并运行以下命令:
$webApp = get-spwebApplication "http://spwebappurl"
$webApp.SuiteBarBrandingElementHtml = "<div class='ms-core-brandingText'>My Intranet Title</div>"
$webApp.Update()
答案 3 :(得分:0)
在CSS代码下方使用您可以删除“页面”或网站图块标题。
< style type="text/css">
{
display:none;
}
</style>