RM 1.0 Remove navtab

YESSSS.. that is exactly what I needed. this method works with ALL navtabs?

Yeah it works with them all for example if you wanted to hide members tabs then you would replace "resources" with the following and so on with other tabs (below would hide the members tab)

Code:
.navTabs .navTab.members .navLink {display: none;}

edit:

It would look like this for multiple instances (below would hide the members, resources & help tabs)

Code:
.navTabs .navTab.members .navLink, .navTabs .navTab.resources .navLink, .navTabs .navTab.help  .navLink  {display: none;}

Etc etc and so forth.
 
Just 2 1/2 years late but.... This is what works for me completely.
Add to EXTRA.CSS
Code:
.navLink, .navTabs .navTab.resources .navLink, .navTabs .navTab.help .navLink  {display: none;}
.navTabs .Popup .SplitCtrl {display: none !important;}
 
Top Bottom