Forum Discussion
How can I add the "title" (banner) / title area to an existing page?
SusanHanley RobElliott Mike Williams Ozlem - I'm also having this same issue. A page was created (owner no longer working at the org) and it has no "Title Region" on the page to edit. The page is integrated heavily into navigation throughout the site, but is not consistent with other pages of similar content and importance, so I need to change its appearance to match others. How do I add that "Title Region" to the existing page above the content sections?
- jens-haleySep 27, 2022Copper Contributor
DayanBoyce
Had the same problem. You may have copied your homepage (as I did), and it seems you cannot add a title area for that, see here.- ganeshsanapSep 28, 2022MVP
Ozlem DayanBoyce Mike Williams ,
I think you have copied the "Home" page of site to create a new page as mentioned by jens-haley similar to the steps mentioned in this article: SharePoint Online: Create a blank page without header & title
In that case, page will not have any header and title. To bring back the header and title settings, you can use below PnP PowerShell:
Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/siteName -UseWebLogin Set-PnPClientSidePage -Identity "MyPage.aspx" -LayoutType "Article"
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- ganeshsanapSep 28, 2022MVP
If you are using latest version of PnP PowerShell, you can use below commands:
Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/siteName -UseWebLogin Set-PnPPage -Identity "MyPage" -LayoutType "Article"
For more information, check this article: SharePoint Online: Create a blank page without header & title
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- Matt1401Mar 02, 2023Copper ContributorHi I found a way to manage!
You need to create a new webpage with (including) a title area. This you must select when creating the page. Name it "home_new.aspx".
Unfortunately now you need to add all the content of you old "home" to your "home_new" manually.
Afterwards rename your old "home.aspx" to "home_old.aspx".
Last step is to rename you newly created "home_new.aspx" to "home.aspx".
If your SharePoint is called now your new home.aspx (including title area) is opened.