I want to remove Resource Manager navtab from the navbar.
masterchief Well-known member May 20, 2013 #1 May 20, 2013 #1 I want to remove Resource Manager navtab from the navbar.
Shelley Well-known member May 20, 2013 #2 May 20, 2013 #2 masterchief said: I want to remove Resource Manager navtab from the navbar. Click to expand... You could try adding the following into the EXTRA.CSS template Code: .navTabs .navTab.resources .navLink {display: none;} Edit: It'll hide the tab though rather than physically remove it entirely.
masterchief said: I want to remove Resource Manager navtab from the navbar. Click to expand... You could try adding the following into the EXTRA.CSS template Code: .navTabs .navTab.resources .navLink {display: none;} Edit: It'll hide the tab though rather than physically remove it entirely.
masterchief Well-known member May 20, 2013 #3 May 20, 2013 #3 Shelley said: You could try adding the following into the EXTRA.CSS template Code: .navTabs .navTab.resources .navLink {display: none;} Edit: It'll hide the tab though rather than physically remove it entirely. Click to expand... YESSSS.. that is exactly what I needed. this method works with ALL navtabs?
Shelley said: You could try adding the following into the EXTRA.CSS template Code: .navTabs .navTab.resources .navLink {display: none;} Edit: It'll hide the tab though rather than physically remove it entirely. Click to expand... YESSSS.. that is exactly what I needed. this method works with ALL navtabs?
Shelley Well-known member May 20, 2013 #4 May 20, 2013 #4 masterchief said: YESSSS.. that is exactly what I needed. this method works with ALL navtabs? Click to expand... 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.
masterchief said: YESSSS.. that is exactly what I needed. this method works with ALL navtabs? Click to expand... 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.
zooki Active member Jun 19, 2013 #6 Jun 19, 2013 #6 It does not work totally, I still get a drop down for downloads on the next navtab!
[xFv] Previously Cylent1 Dec 18, 2015 #7 Dec 18, 2015 #7 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;}
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;}