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!
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
That works brilliantly
Cheers Dwight
glad i was able to help