I think admins could have that on their forum and put a website there that the site is based on,a sister site or just some site the admin created and wants to advertise. If you could may you make a code like that?
Thanks,
0wNzEr
This will add a website (or other) button to the right hand side of the menu. Very similar to the current one here at vFS
Global Header
Code:
- <script>
- /*Add website link to menu - support.virtualforums.co.uk*/
- var image = "http://virtualforums.co.uk/images/homepage/website.gif"; //Image 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+"'><img src='"+image+"'></a></div>";
- </script>