Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
While working on SharePoint 2013 and Office 365 sites, most of our clients request their homepage without having a Browse Tab option.
In those cases, you can avoid taking a lot of time in writing code to hide those files. Just follow the following steps.
Edit the page on which you want to remove the Browse Tab
Add a Script Editor web part.
Paste the following code.
Code
- <style type="text/css">
- #Ribbon.WikiPageTab-title {
- display: none;
- }
- </style>
Your Browse Tab will be gone.
That's it.
Keep reading & keep learning!