This code will hide tabs you choose to hide under the users area.
This code uses JQuery so you need to have the JQuery include in your headers.
<script src="/jquery.js"></script>
Replace
Help with the name of the tab you want to hide.
Add this code to your footers:
<script>
//Made by Omikron 9861
$("table tbody tr td.maintab_back:contains(Help)").hide();
</script>
Hiding tabs only for guestsReplace
Help with the name of the tab you want to hide.
Add this code to your footers:
<script>
if(!$('td.titlebg2 span b').not($("td.titlebg2 span b:contains(News)")).html())
{
$("table tbody tr td.maintab_back:contains(Help)").hide();
}
</script>