|
Post by Dragon on Dec 23, 2011 22:21:33 GMT -8
Aye captain!
Also, thanks for the numbers code. I can definitely use it for my math board.
|
|
|
Post by Dragon on Dec 23, 2011 22:38:11 GMT -8
I think a problem comes from the default var. I mean is it supposed to be just 1 default image ? I only wanted it to show the one image per board
|
|
|
Post by Dragon on Dec 23, 2011 22:39:22 GMT -8
I also dont understand the line: var newPostsMessages=['new posts','no new posts'];
If were replacing the onoff icons with images per board then where does that come in ?
|
|
|
Post by Wormopolis on Dec 23, 2011 22:39:50 GMT -8
like the board image array, the first image is for when there are new posts in the board. the second is for when there isnt. if you dont want it to be a different image, put both images the same. otherwise you can have it just NOT put an image at all by setting that one variable to false. it will then just leave the box empty.
|
|
|
Post by Wormopolis on Dec 23, 2011 22:40:23 GMT -8
the message variable is what it says when you hover over the board image.
|
|
|
Post by Wormopolis on Dec 23, 2011 22:42:33 GMT -8
all of your board images now have spaces in the middle of them.
and you cant do this: var useDefaultOnOffImage=; //set false to remove
must be true or false
|
|
|
Post by Dragon on Dec 23, 2011 22:48:30 GMT -8
I see. There were some errors in the variables a second ago and I fixed them now. Still not seeing the images shine through though. Not sure if the spacing is working as it should.
|
|
|
Post by Dragon on Dec 23, 2011 22:54:02 GMT -8
Houston I've found the why of the problem. By setting the topics pixels to zero it stopped working right. I set it to 50 to test that theory out and the image started working. Albeit there are some spacing issues. The problem is we dont want the topics column. :/
|
|
|
Post by Dragon on Dec 23, 2011 22:55:33 GMT -8
I think if we had the sidetable for main page only coding, which isnt made yet, then that spacing issue were seeing should be fixed. Except for the topics column issue of course.
|
|
|
Post by Wormopolis on Dec 23, 2011 22:55:43 GMT -8
yeah that should hav hidden it... I looking into it
|
|
|
Post by Wormopolis on Dec 23, 2011 22:57:14 GMT -8
change
bpar.cells[bb].width=cellWidths[bb]; if (cellWidths[bb]=='0px') bpar.cells[bb].style.display='none';
to
if (cellWidths[bb]=='0px') { bpar.cells[bb].style.display='none'; } else { bpar.cells[bb].width=cellWidths[bb]; }
|
|
|
Post by Wormopolis on Dec 23, 2011 23:11:58 GMT -8
also add the red into this line
tmp = (td.previousSibling.firstChild.alt=='[/li][li]' || pb_username=='Guest' ? 0: 1);
|
|
|
Post by Dragon on Dec 23, 2011 23:30:37 GMT -8
I think I got in there right, though there were already 3 of these } under.... *is confuzzled*
Not sure I saw a change from it. Also I cant figure out whats wrong with the members central banner area, theres nothing there.
|
|
|
Post by Dragon on Dec 23, 2011 23:32:56 GMT -8
Also, it did hide the topics area before when I set it to 0. However the images on the onoff icons never showed, when I set the topics column to 50px that changed. I just set it back to 0 and its not hidden but the images are showing.
|
|
|
Post by Wormopolis on Dec 23, 2011 23:34:26 GMT -8
I see change. topics column gone.
and look at the board name you put into array
|
|