Introduction: In SharePoint 2013 / 2016 Whenever I create a new page, Page displays the corresponding name of the page at the top and sometimes it's very annoying and confusing for the end user. In my case, I do not want to display name on the page. when I checked SharePoint setting didn't found out of the box option to remove/hide, so finally I have decided to hide this using script or CSS.
Here I am going to share information how to hide page title.
Here I am going to share information how to hide page title.
- Hide Page Title using an embedded script: Please embedded code below in site page and save changes. Page Name will disappear from Page. <script language="javascript">
_spBodyOnLoadFunctionNames.push("HideBrandingsuite");
function HideBrandingsuite()
{
document.getElementById('pageTitle').style.visibility = 'hidden';
}
</script>
1 comments:
thanks, that works for me!
Post a Comment