|
Post by Streamstrider on Apr 17, 2011 19:19:38 GMT -8
I have been looking all over the place on PBS and others to see if there's a way to place the "participated topics" thingermajig in perhaps the sidetables, or elsewhere. However, I realize that since it comes with the other advertisement option (instead of the long image ad at the top of the forum) it might be against the rules to do that (though I have yet to find anything on it). Granted, I stink at finding things even when they're in my face, so forgive me if it seems obvious.
For clarification, I mean this:
|
|
|
Post by Wormopolis on Apr 17, 2011 20:52:01 GMT -8
|
|
|
Post by Streamstrider on Apr 18, 2011 4:50:18 GMT -8
Thanks! I may have another question about it, but right now I have to run and meet a candidate for a professor's replacement. XD
|
|
|
Post by Wormopolis on Apr 18, 2011 7:28:54 GMT -8
may the next always be better then the last
|
|
|
Post by Streamstrider on Apr 19, 2011 5:38:29 GMT -8
*nods* I'll be putting the code around and playing with it a bit today, so we'll see how this all works! Figured out how to take off those darn bullets, though.
|
|
|
Post by Wormopolis on Apr 19, 2011 6:22:19 GMT -8
yeah, that was very clever on his part to figure that out.
|
|
|
Post by Streamstrider on Apr 19, 2011 9:09:47 GMT -8
Hey now, I had to put in the CSS. XD Those bullets looked terrible.
Anywho, finally have another question. If I choose to place the topics list in the main footer in a table, do you know of any way I could make the table not appear to guests?
Test Board
This is just one of my test boards, but it illustrates what I mean by the table being visible for guests. It looks kind of silly, or out of place. XD (It's in the main header for the test board.)
|
|
|
Post by Wormopolis on Apr 23, 2011 11:37:51 GMT -8
anytime you want to keep something from a guest, the easiest method is a combo style-script method
<element style="display"none" id="guesthide"> content </element> <script type="text/javascript"> if (pb_username!='Guest') document.getElementById('guesthide').style.display=''; </script>
element is the HTML element you wish to hide. could be a div, a table, anything.
|
|
|
Post by Streamstrider on Apr 26, 2011 11:19:28 GMT -8
So the script would allow the members to see what's hidden, yes? (And I suppose you mean script instead of style?)
|
|
|
Post by Wormopolis on Apr 28, 2011 15:30:47 GMT -8
yeah that closer should be a script...
|
|