View Full Version : Alternating Row colors in Postbit
n00belit3
02-08-2004, 07:29 AM
Yes i know this has been asked many times before but as i searched vbulletin .com/org all i could find were modfications for vb2 or for forum display or showthread, none for vb3 postbit.
In order to show alternating row colors in postbit i know i have to replace the alt1 and alt2 class with a conditional but dont know what it is, i imagine its something like this
<if condition="$forum['threadid'] % 2 == 0">class="alt2"<else />class="alt1"</if>
Any help would be appreciated thnx.
n00belit3
02-09-2004, 07:43 AM
OMG someone please give me the conditional, ive been searching everywhere and cant find anything up to date for postbit :disappointed:
Dark_Wizard
02-09-2004, 05:55 PM
Dude, first off chill out and secondly use the search feature. If you had spent the time using the search you would have found this -> https://vborg.vbsupport.ru/showthread.php?t=60092&highlight=bgclass
n00belit3
02-09-2004, 07:26 PM
This is also for forum home and show thread not postbit :disappointed:
sabret00the
02-09-2004, 07:38 PM
try vBT
n00belit3
02-09-2004, 07:50 PM
That was my first stop, they said it prob couldnt be done without hacking hence why i came here.
n00belit3
02-12-2004, 08:16 AM
omg i cant believe that no one can help me with this, ive gone to every vb related site and havnt found anything
Andreas
02-12-2004, 08:25 AM
Can you post an image or an URL where we can see how it should look like?
As I don't seem to understand what you want to achieve ...
n00belit3
02-12-2004, 06:05 PM
<a href="http://www.warpstorm.com/showthread.php?threadid=4987" target="_blank">http://www.warpstorm.com/showthread.php?threadid=4987</a>
Alternating rows instead of columns for postbit, first post alt1 second post alt2 third alt1 fourth post alt2 so on and so on.
sabret00the
02-12-2004, 06:27 PM
how did you do it in the end?
n00belit3
02-12-2004, 06:33 PM
hehe i didnt still waiting for someone to help me out with this :ermm:
Berethorn
07-02-2004, 02:54 PM
And I'm still searching, looking everywhere for the exact same thing, with no luck. :(
Jolten
07-02-2004, 03:13 PM
Place the following in the TD tag for the post. Depending upon what your postbits template looks like you may need to place it in several table cells.
<if condition="$post['postcount'] % 2 == 0">class="alt2"<else />class="alt1"</if>
Hope that helps.
In my template it looks likethis for the first table cell
<td <if condition="$post['postcount'] % 2 == 0">class="alt2"<else />class="alt1"</if> style="padding:$stylevar[cellpadding]" width="120" nowrap="nowrap" rowspan="2" $scrolltothis>
I also had to add the conditional to 3 other table cells in my highly customized postbits template.
If you want to post your posbits template or indicate which default template you're using I can show you specifically where to add the conditional.
Berethorn
07-02-2004, 03:52 PM
Thanks so much! :D That's exactly what I've been looking for, and it works great!
I may suggest, to other people using it - change the 'alt1' and 'alt2' to 'alt4' and 'alt5', then use CSS to define the background colors. That way, the postbit alternate colors can work independant of the forumhome, etc.
Thanks again! :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.