For those that are familiar with JS/CSS, there are ways to hide specific elements on a website.
On Chrome, specifically, I’ve had my team use the following extension:
chrome.google.comI then added the following CSS
.monday-board-subsets-tabs .monday-board-subset-item-v2:nth-child(2) {
display: none;
}```
This makes it so that the **second HTML Div / view** gets hidden. I did this because I have an overview set as default... Now this code clearly hides the main table view for everyone. Not sure if an app can be made to apply this conditionally based on each user but the Chrome extension itself allows you to enable/disable the functionality.
I manually set this up on each team member's computer so they don't have access to the main view.
I'd like to see Monday have this as an official solution based on user roles.
Quick and easy solution, especially if they have it applied directly on their website for cross-browser support!