Well i figured out how to do it.
i did this
PHP Code:
if ($counter%2==0) {
$post[backcolor]="{firstaltcolor}";
$post[bgclass] = "alt1";
} else {
$post[backcolor]="{secondaltcolor}";
$post[bgclass] = "alt2";
}
if ($counter%2==0) {
$post[bevel]="{bevel1}";
$post[bevelclass] = "bevel1";
} else {
$post[bevel]="{bevel2}";
$post[bevelclass] = "bevel2";
}
That worked great for me. I figured it out thanks.