vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: > Remove :: from Menu

Remove :: from Menu - Posted By Michael (wrighty) on 30th Dec 07 at 2:04am
This will remove the menu spacer :: from the menu bar... it'll then leave the menu buttons spaced out by 1 space! {Smile}

Global Header

Code:
 
  1. <script type="text/javascript">
  2. /*Remove  ::  from Menu
  3. Created By Wrighty
  4. support.virtualforums.co.uk*/
  5.  
  6. var menu = document.getElementById('menu_buttons');
  7.  
  8. menu.innerHTML = menu.innerHTML.replace(new RegExp(" ::","g"),'');
  9. </script>
 

Re: Remove :: from Menu - Posted By Danny (schnooble) on 30th Dec 07 at 3:11am
pretty useful code for people using close menu button images {Smile}

Re: Remove :: from Menu - Posted By beccagranger (beccagranger) on 4th Jan 08 at 11:17am
Hey Wrighty, is there any way that I could get this code without the space? {Grin} No menu spacing, but remove the :: :: still?

Re: Remove :: from Menu - Posted By Michael (wrighty) on 4th Jan 08 at 11:43am
Sure thing! {Cheesy}

Code: JavaScript
 
  1. <script>
  2. /*Remove  ::  from Menu
  3. Created By Wrighty
  4. support.virtualforums.co.uk*/
  5.  
  6. var menu = document.getElementById('welcome_table').getElementsByTagName('td')[2];
  7.  
  8. menu.innerHTML = menu.innerHTML.replace(new RegExp(" :: ","g"),'');
  9. </script>
 


try that! {Smile}

Re: Remove :: from Menu - Posted By beccagranger (beccagranger) on 4th Jan 08 at 2:22pm
You are a sweetheart. {Kiss} Thanks so much, it worked great!

Re: Remove :: from Menu - Posted By Dreg[Bot] (dregondrahl) on 6th Jan 08 at 1:23am
CSS alternative

Images:


#welcome_table .menu *{
     font-size: 0px;
}
#welcome_table .menu img{
     margin-left: 5px;
}



Text:


#welcome_table .menu *{
     font-size: 0px;
}
#welcome_table .menu a{
     margin-left: 5px;
     font-size: 13px;
}

Re: Remove :: from Menu - Posted By Graystorm (warriorfreak) on 15th Jan 08 at 2:58am
It doesn't work. {Unsure}

Re: Remove :: from Menu - Posted By BizzD (0wnzer) on 15th Jan 08 at 4:42am
 
It doesn't work. {Unsure}

Which code?

Re: Remove :: from Menu - Posted By Graham (amusedtodeath) on 15th Jan 08 at 10:54am
 
It doesn't work. {Unsure}


Can you link the the board which you're trying it? {Smile}

Re: Remove :: from Menu - Posted By Alex Bailey (system) on 18th Jul 08 at 9:31pm
not working when logged in

www.bailey.vforums.co.uk

Re: Remove :: from Menu - Posted By Michael (wrighty) on 19th Jul 08 at 7:10pm
This code should work flawlessly, please link to any forums that are having a problem! {Smile}

Re: Remove :: from Menu - Posted By ashkir (ashkir) on 30th Jul 08 at 7:52pm
If you want to remove all spacing:

Find: (" ::","g"
Replace: (" :: ","g"

Re: Remove :: from Menu - Posted By Michael (wrighty) on 30th Jul 08 at 8:18pm
It's in the 4th reply! {Wink}

Re: Remove :: from Menu - Posted By ashkir (ashkir) on 17th May 09 at 7:50pm
Rough preview:
Image