|
Post by Simpsons Rule on Dec 7, 2003 18:20:42 GMT -5
Place this in your Headers:
<script> document.getElementsByTagName('tr')[1].deleteCell(1); </script>
|
|
|
Post by drake2josh on Mar 19, 2006 19:53:08 GMT -5
it didn't work for me
|
|
|
Post by JZSquared on Mar 21, 2006 0:51:05 GMT -5
Works for me, are you putting it in your global header at the top? And it won't delete the <<Home>> portion below your banner. To do that use this code: <script><!-- document.getElementsByTagName('font')[1].innerHTML=''; //--></script> Along with the other code in the Global Header.
|
|
|
Post by drake2josh on Apr 9, 2006 17:08:17 GMT -5
thanx!
|
|
|
Post by JZSquared on Apr 10, 2006 0:35:56 GMT -5
No prob
|
|
|
Post by fullmetal4 on Jul 13, 2006 0:38:42 GMT -5
I did that but how do I get my Pm's here is my site bye the way I need the code to make the pms uder the banner like on this site and here is my site can you help me I need to no how to check my pms theotakuelite.proboards80.com/index.cgi
|
|
|
Post by Simpsons Rule on Jul 13, 2006 5:27:27 GMT -5
I did that but how do I get my Pm's here is my site bye the way I need the code to make the pms uder the banner like on this site and here is my site can you help me I need to no how to check my pms theotakuelite.proboards80.com/index.cgiAdd this code to your Global Headers. You need to have a PM Button Image, just like you have custom Home, Help, Search, etc. images. Pu the URL of the PM button in the read area below. <script type='text/javascript'>
var ImgUrl='URL OF IMAGE'; var UrlDir='http://theotakuelite.proboards80.com/index.cgi?action=pm';
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>
|
|
|
Post by fullmetal4 on Jul 13, 2006 18:32:58 GMT -5
I did that but how do I get my Pm's here is my site bye the way I need the code to make the pms uder the banner like on this site and here is my site can you help me I need to no how to check my pms theotakuelite.proboards80.com/index.cgiAdd this code to your Global Headers. You need to have a PM Button Image, just like you have custom Home, Help, Search, etc. images. Pu the URL of the PM button in the read area below. <script type='text/javascript'>
var ImgUrl='URL OF IMAGE'; var UrlDir='http://theotakuelite.proboards80.com/index.cgi?action=pm';
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>I did that and this is what I put in the globel header <script type='text/javascript'> var ImgUrl='http://i53.photobucket.com/albums/g79/Fullmetal4_photos/pm.jpg'; var UrlDir='http://theotakuelite.proboards80.com/index.cgi?action=pm'; 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>
|
|
|
Post by Simpsons Rule on Jul 13, 2006 21:56:22 GMT -5
Try making it the very first thing in your Global Headers.
|
|
|
Post by fullmetal4 on Jul 13, 2006 22:53:43 GMT -5
Try making it the very first thing in your Global Headers. Thanks so much it worked
|
|
|
Post by itachi on Aug 23, 2007 17:35:37 GMT -5
Is there a code that just get's rid of the pm spot. 9thhokage.proboards78.com/index.cgi that's the site that im trying to to it on. When i put the code in it deletes the whole bar.
|
|
|
Post by Buffy Summers(sharlet135) on Jan 24, 2008 7:41:55 GMT -5
It also did not work for me, I put it in every hooter.
|
|
|
Post by JZSquared on Jan 24, 2008 16:49:53 GMT -5
It also did not work for me, I put it in every hooter. It doesn't go in the footers. It goes in your global header. Try using this code instead, it will probably work better for version four. <script type="text/javascript"> <!-- document.getElementsByTagName('td').item(2).style.display="none"; //--> </script> Code above provided by Proboards Support.
|
|
|
Post by Buffy Summers(sharlet135) on Jan 24, 2008 17:21:20 GMT -5
I meant to say header, sorry.
|
|
|
Post by Buffy Summers(sharlet135) on Jan 24, 2008 17:22:07 GMT -5
Cool, that worked, thanks.
|
|