Remove addon from menu

Trix

Member
I've installed the Donation Manager addon, and it's placed itself as a Menu option at the top of the page. I would like to remove it from there though as i have no need for it taking up the space on my menu bar :)

Any idea where to look? I've tried the navigation template, and Extra.css
 
You can hide a tab using CSS.

Admin CP -> Appearance -> Templates -> EXTRA.css

Rich (BB code):
.navTabs .navTab.members
{
	display: none;
}

You must specify the tabid which can be seen in the HTML source.
 
Is there a way to virtually kiss you?!

Thank you so much, worked a charm

/edit

Incase anyone else is looking for it, i used

Code:
.navTabs .navTab.donations
{
display: none;
}
 
Top Bottom