Jan 14 2021 02:29 PM
Hi, I created a page by copying another page. The existing page did not have the title bar with the background image. Is there a way to add this web part? I do not see it listed under the web parts.
Jan 16 2021 09:31 AM
@Ozlem you can save a page (normal or news) as a template and then select that template when you create the new page. It will have all the elements in the original page.
Rob
Los Gallardos
Microsoft Power Automate Community Super User
Apr 25 2022 12:09 PM
Apr 25 2022 01:25 PM
@AMDphreak "that is not what the original poster was asking about. In fact, it is the exact opposite of what he was asking about." Wow, harsh. I've never experienced that so can't help. Maybe someone else can.
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
Apr 26 2022 01:22 PM
@Ozlem Assuming that you are talking about a modern page, you can edit the Title Region and select a layout that includes an image and title as in the attached image.
Jun 27 2022 03:28 PM
Jul 24 2022 11:37 PM
@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?
Sep 27 2022 08:03 AM
@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.
Sep 27 2022 10:15 PM
@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.
Sep 27 2022 10:21 PM - edited Jan 20 2023 12:40 AM
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.
Oct 03 2022 02:12 PM
Oct 04 2022 12:34 AM
@ganeshsanap
The first command doesn't seem to exist for me, I also tried it in a PS in admin mode, but get the following error:
Connect-PnPOnline : The term 'Connect-PnPOnline' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try
again.
Is that cmdlet to be installed?
Thanks
Oct 04 2022 01:02 AM
@jens-haley You have to first install the PnP PowerShell module. Check below articles for more information:
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.
Jan 31 2023 08:16 AM
Mar 02 2023 05:07 AM
Jun 05 2023 08:56 AM
Thanks @Matt1401 !!!!
I'm glad I kept looking, this is a simple Bait and Switch to trick the system that I didn't think of. The fact that you still can't just add the title section is <applying corporate filter> ...unfortunate...
you saved me time and frustration
Aug 17 2023 09:42 AM
Nov 08 2023 04:13 AM
Nov 08 2023 04:21 AM
Nov 08 2023 05:01 AM
You're right. The solution given above by creating a new page and then renaming it to the name of old page might not work sometimes if you have any integration based on the page ID.
Hence, you can get back the page title and header back for existing pages easily using the PnP PowerShell commands (mentioned above as well):
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
Note that you have to first install the PnP PowerShell module. Check below articles for more information:
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.