[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | Menu splitter support (30th Aug 08 at 5:00am UTC) | | http://teenrevival.vforums.co.uk
So, basically the menu splitter isn't working with the Add Menu Buttons Code.... it was before, when I had the floating menu, but now it isn't. | |
Hallelujah! 'tis done; I believe on the Son; I am saved by the blood of the Crucified One! |
|
Ross Administrator
Posts: 3,709 Status: Offline Gender: Male Age: 8 1⁄1 Joined:
Additional Groups: Support Team
pmwwwgtalkvForum | Re: Menu splitter support (30th Aug 08 at 7:49pm UTC) | | I'm not familiar with that this "Menu Splitter" is supposed to do. Have you got a link to it / an example of what you would like to achieve? | |
|
|
[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | |
[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | Re: Menu splitter support (8th Sep 08 at 8:19am UTC) | | Bumpsies! | |
Hallelujah! 'tis done; I believe on the Son; I am saved by the blood of the Crucified One! |
|
Ross Administrator
Posts: 3,709 Status: Offline Gender: Male Age: 8 1⁄1 Joined:
Additional Groups: Support Team
pmwwwgtalkvForum | Re: Menu splitter support (9th Sep 08 at 11:18pm UTC) | | Use this in place of the add menu buttons code and ensure it is placed before the menu splitter code
Code: JavaScript - <script>
- /*Add Menu Buttons
- Created By Wrighty
- support.virtualforums.co.uk*/
-
- var menu = document.getElementById('menu_buttons').getElementsByTagName('font')[0];
-
- function do_menu(a_text,link){
- menu.innerHTML+= " :: <a href="+link+">"+a_text+"</a>";
- }
-
- do_menu('Shop','http://teenrevival.vforums.co.uk');
- </script>
| |
|
|
[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | Re: Menu splitter support (10th Sep 08 at 6:52am UTC) | | Thanks Ross
+rep | |
Hallelujah! 'tis done; I believe on the Son; I am saved by the blood of the Crucified One! |
|
[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | Re: Menu splitter support (12th Sep 08 at 11:30pm UTC) | | HELPPPPPPP! As soon as I duplicate the last line {do_menu('Shop','http://teenrevival.vforums.co.uk');} to add a check pm's button it doesn't show either buttons. | |
Hallelujah! 'tis done; I believe on the Son; I am saved by the blood of the Crucified One! |
|
Ross Administrator
Posts: 3,709 Status: Offline Gender: Male Age: 8 1⁄1 Joined:
Additional Groups: Support Team
pmwwwgtalkvForum | Re: Menu splitter support (14th Sep 08 at 9:51pm UTC) | | Can you post exactly what you're trying to use as the second button? I just tried it out on your forum and it showed a second button fine for me | |
|
|
[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | Re: Menu splitter support (16th Sep 08 at 8:45am UTC) | | Just a check PM's button.
With Check PM's and the url. | |
Hallelujah! 'tis done; I believe on the Son; I am saved by the blood of the Crucified One! |
|
[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | Re: Menu splitter support (18th Sep 08 at 10:05am UTC) | | Bump! | |
Hallelujah! 'tis done; I believe on the Son; I am saved by the blood of the Crucified One! |
|
Marc vChat Developer
I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 32 Joined:
Additional Groups: Coding Team
pmwww | Re: Menu splitter support (18th Sep 08 at 9:13pm UTC) | | I can only assume that the issue was cause by the apostrophe in "Check PM's". Be sure when using this code to escape apostrophes with a backslash (\).
Code: - <script>
- /*Add Menu Buttons
- Created By Wrighty
- support.virtualforums.co.uk*/
-
- var menu = document.getElementById('menu_buttons').getElementsByTagName('font')[0];
-
- function do_menu(a_text,link){
- menu.innerHTML+= " :: <a href="+link+">"+a_text+"</a>";
- }
-
- do_menu('Shop','http://teenrevival.vforums.co.uk');
- do_menu('Check PM\'s','http://teenrevival.vforums.co.uk/action/pm/');
- </script>
| |
rroll.to— Shorten a link, rickroll your friends. |
|
[.tR] ookie1 Full Member
Is it choccy? Posts: 167 Status: Offline Joined:
pm | Re: Menu splitter support (19th Sep 08 at 10:38am UTC) | | Thanks, Marc! | |
Hallelujah! 'tis done; I believe on the Son; I am saved by the blood of the Crucified One! |
|
Marc vChat Developer
I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 32 Joined:
Additional Groups: Coding Team
pmwww | Re: Menu splitter support (20th Sep 08 at 6:10pm UTC) | | No worries. | |
rroll.to— Shorten a link, rickroll your friends. |
|