Question Remove navigation tab

NexusN9ne

New Member
I'm wanting to remove the navigation tab, either manually or I'm just missing that option.

I'm making a couple of menus to sort my current tabs. I've got 7 tabs currently and would like to remove the default tab to replace it with a drop down tab showing multiple tabs.

Is this hard-coded in your add-on files? Done via template modification? Or is it a separate template?

Thanks.
 
Had to edit Listener.PHP to remove it, not sure why the CSS edit wouldn't work. Resolved my issue though, thanks.

Now to upgrade the add-on ;) and fix it again...
 
Had to edit Listener.PHP to remove it, not sure why the CSS edit wouldn't work. Resolved my issue though, thanks.

Now to upgrade the add-on ;) and fix it again...
NexusN9neIt is depend to the route you are using. So the best way is:
Code:
.navTab.guilds, .navTab.groups, .navTab.teams, .navTab.clubs {
display: none !important;
}
 
It is depend to the route you are using. So the best way is:
Code:
.navTab.guilds, .navTab.groups, .navTab.teams, .navTab.clubs {
display: none !important;
}
Nobita
Yeah, figured it out eventually. I was on mobile when I did the CSS edit, so it was rather difficult to see what I was missing. Got home, fixed it and its working.
 
Back
Top