The Arcive of vBulletin Modifications Site. |
|
How can I make this little change? Details »»
|
|||||||||||||||||||||||||
How to exchange the table 1 and table 2 color without change the firstalttable and secoundalttable color? Thanks!
![]() Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
In functions.php replace this:
Code:
if ($counter%2==0) {
$post[backcolor]="{firstaltcolor}";
$post[bgclass] = "alt1";
} else {
$post[backcolor]="{secondaltcolor}";
$post[bgclass] = "alt2";
}]
Code:
if ($counter%2==0) {
$post[backcolor]="{postfirstalt}";
$post[bgclass] = "alt1";
} else {
$post[backcolor]="{postsecondalt}";
$post[bgclass] = "alt2";
}
|
|
#3
|
|||
|
|||
|
wo thanks for your help, I got it now :rambo:
|
![]() |
|
|