vForums Support > Programming & Coding :: Code Requests & Support :: > Web link code

Web link code - Posted By Graham (amusedtodeath) on 17th Oct 08 at 11:47pm
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 {Smile}

Thanks in advance! {Cheesy}

Re: Web link code - Posted By dog199200 (dog199200) on 18th Oct 08 at 12:53am
{Smile} give me a second and i'll see what i can do

Edit: OK try this

Code:
 
  1. <script>
  2. /*Add website link to menu - support.virtualforums.co.uk*/
  3.  
  4. var text = "test"; //Text to Show
  5. var link = "http://support.virtualforums.co.uk"; //Website Link
  6.  
  7. //DO NOT EDIT BELOW HERE!
  8. var m = document.getElementById('welcome_table').getElementsByTagName('td').item(2);
  9. m.innerHTML = "<div style='float:left'>"+m.innerHTML+"</div><div style='float: right'><a href="+link+">"+text+"</a></div>";
  10. </script>
 


Just tested it and it works

Re: Web link code - Posted By Graham (amusedtodeath) on 18th Oct 08 at 8:38am
That works brilliantly {Cheesy}

Cheers Dwight {Smile}

Re: Web link code - Posted By dog199200 (dog199200) on 18th Oct 08 at 10:55pm
glad i was able to help