vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: > Remove User Bar

Remove User Bar - Posted By Michael (wrighty) on 15th Mar 08 at 10:08pm
This will remove the userbar:
Logged In as: Michael          No New Private Messages :: Mark All Boards As Read

<style>
#user_table {
    display: none;
}
</style>

Re: Remove User Bar - Posted By tabbikat (tabbikat) on 7th May 08 at 8:28am
I'm not very good with codes. Where does this one go?

Re: Remove User Bar - Posted By Ross (admin) on 7th May 08 at 9:21am
That would go into the "Global Header" {Smile}

Re: Remove User Bar - Posted By tabbikat (tabbikat) on 7th May 08 at 9:58am
Thanks. But when I use the code, it leaves my header and base image where the user bar used to be. {Sad}

See ---> >Clicky<

Re: Remove User Bar - Posted By Ross (admin) on 7th May 08 at 10:48am
OK, replace what you've got there at the moment with this {Smile}

Code: JavaScript
 
  1. <script type="text/javascript">
  2. <!--
  3. get('user_table', ID).style.display = 'none';
  4. get('user_table', ID).previousSibling.style.display = 'none';
  5. get('user_table', ID).nextSibling.style.display = 'none';
  6. -->
  7. </script>
 

Re: Remove User Bar - Posted By tabbikat (tabbikat) on 7th May 08 at 5:51pm
Wow, it worked. Thanks a ton. {Grin}