inherit
49212
0
Aug 8, 2006 0:05:19 GMT -8
dfurball
525
July 2005
dfurball
|
Post by dfurball on Jul 7, 2005 8:19:44 GMT -8
If your probaords forum is just a forum fro your site, or if you have another site you wish to bring attentions to, heres a code for you. This will add a button by the home buttons (search, login, members, ect.) which can link to another site. I have one for images or for users link me that have a code to remove the buttons for txt only home buttons, I have a code for you also!. Just got this from SSD for my forum. Works great...
Global Headers
<script type='text/javascript'>
var ImgUrl='Url Image'; var UrlDir='http://URL REDIRECTION';
var gCell=document.body.getElementsByTagName('td').item(5); var Img=document.createElement('img'); var Href=document.createElement('a'); Href.setAttribute('href',UrlDir); Img.setAttribute('src',ImgUrl); Img.setAttribute('border','0') Href.appendChild(Img); gCell.appendChild(Href); </script>
No image, txt only home buttons:
<script type='text/javascript'>
var iText='txt'; var UrlDir='http://URL REDIRECTION';
var gCell=document.body.getElementsByTagName('td').item(5); var Href=document.createElement('a'); Href.setAttribute('href',UrlDir); Href.innerHTML=iText gCell.appendChild(Href); </script>
|
|