Forum Discussion
hide elements of navigation bars in sharepoint site
- Sep 12, 2023
The left most navigation (with My lists link) is called as a SharePoint app bar. Unfortunately, you cannot hide SharePoint app bar since March 31, 2023. There are some Microsoft unsupported ways to hide it but you should avoid doing it (check below link #2).
Check all related details at:
- Introducing a SharePoint app bar that features global navigation
- How to remove all sites bar and change the domain name in SharePoint modern site
The second navigation is (Home, Documents, etc.) is called as a SharePoint site navigation. You can either move it top side below site title or completely hide it using SharePoint site navigation settings.
Check detailed steps for making site navigation horizontal or hiding it at: New Navigation features for SharePoint team sites
Also, you can make the SharePoint site navigation links visible conditionally using audience targeting. Check this Microsoft official documentation for more information about this: Target navigation, news, files, links, and web parts to specific audiences
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.
the_common_starling Also, if you want to disable personal Microsoft Lists creation for all users across tenant, you can do it using PnP PowerShell:
Connect-PnPOnline -Url "https://<tenant>-admin.sharepoint.com/" -Interactive
Set-PnPTenant -DisablePersonalListCreation $true
Replace <tenant> with your SharePoint tenant name.
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.