|
Post by pm on Jul 23, 2009 22:57:12 GMT -8
|
|
|
Post by Wormopolis on Jul 23, 2009 23:17:33 GMT -8
Its picking up the secondary opacity from the windowbg class... what we need to do is make signatures have no class...
try this out:
<script type="text/javascript"> <!-- for (tds=document.getElementsByTagName('td'), s=0; s<tds.length; s++) { if (tds.width=="80%" && tds.className.match(/windowbg/) && tds.align=="left") { if (tds.getElementsByTagName('table') && tds.getElementsByTagName('table')[0]) { trws=tds.getElementsByTagName('table')[0].rows; if (trws.length>3) trws[2].className=""; } } } // --> </script>
|
|
|
Post by pm on Jul 23, 2009 23:26:47 GMT -8
Did'nt work. I moved it about 6 times in my Global Footers.
|
|
|
Post by Wormopolis on Jul 23, 2009 23:42:08 GMT -8
ah.. you have a code that merges signature with post... wasnt expecting that..
gimme a sec.
|
|
|
Post by Wormopolis on Jul 23, 2009 23:53:00 GMT -8
change this line:
if (trws.length>3) trws[2].className="";
to this:
if (trws.length>3) trws[2].firstChild.className="";
|
|
|
Post by pm on Jul 24, 2009 1:57:47 GMT -8
That done the trick! Thankyou Very Much!!
|
|
|
Post by pm on Aug 28, 2009 20:26:06 GMT -8
Wormo, My code stopped working. <script type="text/javascript"> <!-- //Remove BG around siggy for (tds=document.getElementsByTagName('td'), s=0; s<tds.length; s++) { if (tds .width=="80%" && tds.className.match(/windowbg/) && tds.align=="left") { if (tds.getElementsByTagName('table') && tds.getElementsByTagName('table')[0]) { trws=tds.getElementsByTagName('table')[0].rows; if (trws.length>3) trws[2].firstChild.className=""; } } } // --> </script>
I added a few other codes last night including make you're own mini-profile and did'nt notice it until today. I have moved it around and around everywhere.
No hurry on this, just letting you know.
Thanks man!
|
|
|
Post by Wormopolis on Aug 28, 2009 21:19:15 GMT -8
|
|
|
Post by Wormopolis on Aug 28, 2009 21:21:16 GMT -8
all the boards are Guest-haters..
can you get me a board with a post so I can see what needs to be changed?
|
|
|
Post by pm on Aug 28, 2009 21:43:21 GMT -8
;D Sorry about that. Basic Rules is open to Guest now.
|
|
|
Post by Wormopolis on Aug 28, 2009 22:38:42 GMT -8
change this:
if (trws.length>3) trws[2].firstChild.className="";
to this:
if (trws.length>=3) trws[2].firstChild.className="";
|
|
|
Post by pm on Aug 28, 2009 22:49:25 GMT -8
That fixed it! Did a code I add cause that?
Thanks man!
|
|
|
Post by Wormopolis on Aug 28, 2009 22:54:53 GMT -8
I think it was more a code you took out. did you used to have something that added something at the end of the posts?
|
|
|
Post by pm on Aug 28, 2009 23:43:54 GMT -8
Shoot I don't even remember. I did notice that this code don't work no more so I took it out. I don't need it so don't worry about it. <script type="text/javascript"> <!-- // Change post/signature seperator.. var postSigSpacer = 'http://img.photobucket.com/albums/v692/poorman3/MORE%20IMAGES/barb.gif'; var hr = document.getElementsByTagName('hr'); for(h=0; h<hr.length; h++) { if(hr[h].className == 'hr' && hr[h].parentNode.size == '1') { var spacer = document.createElement('img'); spacer.src=postSigSpacer; spacer.border = '0'; spacer.style.width = '100%'; spacer.style.height = '35px'; hr[h].style.display = 'none'; hr[h].parentNode.insertBefore(spacer,hr[h]); }} // --> </script> Thanks again for the help! I got to get my mini profile working now. It was affecting my static bar thing when I view a thread.
|
|