Graham Support Administrator
Posts: 1,642 Status: Offline Gender: Male Location: Sussex, UK Age: 39 Joined:
Additional Groups: Support Team
pmwww | Web link code (17th Oct 08 at 11:47pm UTC) An edit? | | There's already a code to add an image link to the menu bar, but is it possible for it to be edited, or one created for text menus? The site i am creating uses text menus and it'd be nice for it to fit in
Thanks in advance! | |
|
dog199200 Guest | Re: Web link code (18th Oct 08 at 12:53am UTC) | | give me a second and i'll see what i can do
Edit: OK try this
Code: - <script>
- /*Add website link to menu - support.virtualforums.co.uk*/
-
- var text = "test"; //Text to Show
- var link = "http://support.virtualforums.co.uk"; //Website Link
-
- //DO NOT EDIT BELOW HERE!
- var m = document.getElementById('welcome_table').getElementsByTagName('td').item(2);
- m.innerHTML = "<div style='float:left'>"+m.innerHTML+"</div><div style='float: right'><a href="+link+">"+text+"</a></div>";
- </script>
Just tested it and it works | |
|
Graham Support Administrator
Posts: 1,642 Status: Offline Gender: Male Location: Sussex, UK Age: 39 Joined:
Additional Groups: Support Team
pmwww | Re: Web link code (18th Oct 08 at 8:38am UTC) | | That works brilliantly
Cheers Dwight | |
|
dog199200 Guest | Re: Web link code (18th Oct 08 at 10:55pm UTC) | | glad i was able to help | |
|