While working on SharePoint 2013 and Office 365 sites, most of our clients request their homepage to not have a "Browse" or "Page" tab options. Let's see how to achieve that.
In those cases, you can avoid taking a lot of time writing code to hide those files. Just follow the steps below:
- Edit the page on which you want to remove the Browse and/or Page Tab link.
- Add a Script Editor web part.
- Paste the following code.
Code
- <style type="text/css">
- .ms-cui-tts {
- display: none;
- }
- </style>
- Your Browse and/or Page Tab link will be gone.
That's it.
Keep reading & keep learning!