|
Post by Wormopolis on Nov 11, 2009 14:38:37 GMT -8
Since the info center is only available on the home page, that will be the only page that it can get information from. You can have a mod added that stores the information in a cookie and if the information isnt actually there it puts what it remembered the last info was, but it WONT be accurate information. It will only be accurate as the LAST time the home page was seen.
I ned to see where the extra spacing is coming from on the ones you like. it could be a font size thing or it could be a <br> thing.
|
|
tmcwolf
Not New Member
Posts: 4
tmcwolf said 0 great things
|
Post by tmcwolf on Nov 11, 2009 15:14:50 GMT -8
Alright, that's what I figured. ^^ Hmm, any way to make it so that that specific side box is hidden when you're not viewing the home page then? It looks kind of dumb just sitting there, all blank...
For you to see that, do I need to post the code, or give you my url?
|
|
|
Post by Wormopolis on Nov 11, 2009 21:37:34 GMT -8
to answer both questions I need a URL. hiding a side table box can be easy if an id is added.
|
|
tmcwolf
Not New Member
Posts: 4
tmcwolf said 0 great things
|
Post by tmcwolf on Nov 12, 2009 7:36:30 GMT -8
Okay. I'll pm it to you then. =)
|
|
|
Post by Wormopolis on Nov 12, 2009 7:38:31 GMT -8
excellent. I can work on this when I get home from work today.
|
|
tmcwolf
Not New Member
Posts: 4
tmcwolf said 0 great things
|
Post by tmcwolf on Nov 12, 2009 7:47:41 GMT -8
Awesome. Have fun at work! Edit: Actually, now that I've added a few boards and really see what the forum looks like, I've changed my mind. I don't think I want the Info Center as a side box anymore. Thank you very much for being patient with me, though.
|
|
|
Post by tunescool on Nov 12, 2009 21:40:57 GMT -8
i told you i wanted to have it show in threads on proboards, rite now this shows up on the board page and the post page like this sinse im already in this thread, im using a table in every board but i dont know how to get it aligned left with the forum, it just aligns left with the page. i only want it to show on the thread page, but it shows obviously in the post page as well. id like it to show up just black or a gradient
|
|
|
Post by Wormopolis on Nov 12, 2009 23:52:15 GMT -8
use this for that table:
<TABLE id="ICtbl" class="bordercolor" cellSpacing="1" cellPadding="4" width="92%" align="center" style="display: none"><TBODY><TR><TD class="windowbg" vAlign="top" width="65%"><FONT size="2"><DIV id="BOX1div"></DIV></FONT></TD><TD class="windowbg" vAlign="top" align="center" width="35%"><FONT size="2"><DIV id="BOX2div"></DIV></FONT></TD></TR></TBODY></TABLE>
and then in the code add this line:
if (!location.href.match(/action=/)) document.getElementById('ICtbl').style.display="";
above the break;
|
|
|
Post by Wormopolis on Nov 13, 2009 0:08:41 GMT -8
now THAT will keep the table hidden until there is actually information to put into it.
and here is the same disclaimer I have been telling others. only the main page has information from the info center. if you want to fake the information into those boxes, a mod can be added so that it saves the last data it parsed from the info center and carries it from board to board. but that information will only be as accurate as the last time you visited the main page.
still interested?
|
|
|
Post by tunescool on Nov 13, 2009 6:12:35 GMT -8
when is there enough info to put in it
|
|
|
Post by Wormopolis on Nov 13, 2009 7:28:27 GMT -8
as soon as the main page is visited the informatin will be updated in the box and stored in a cookie. but if you travel around the board without visiting the main page it wont be accurate.
|
|
|
Post by tunescool on Nov 13, 2009 7:35:13 GMT -8
for guests it would be like that? if they go to a thread first their info wont be accurate?
|
|
|
Post by Wormopolis on Nov 13, 2009 7:43:33 GMT -8
it would be like that for everyone. you can only manipulate data that is already there. if they go to a thread directly without ever visiting the main page, there wont be any information at all.
|
|
|
Post by tunescool on Nov 13, 2009 8:01:28 GMT -8
alrite forget it, what about the other table, i just want it to show in the thread page and align it with the forum on the left.
|
|
|
Post by Wormopolis on Nov 13, 2009 15:06:33 GMT -8
to align something with the board, I would do this:
<center><div width="92%"><table align="left"><tr><td>stuff</td></tr></table></div></center>
change the 92% to whatever your board width is now...
|
|