Well the posts background should alternate in color automatically.
NOT TESTED!
For the font color go into functions.php and find this:
PHP Code:
if ($counter%2==0) {
$post[backcolor]="#13486D";
$post[bgclass] = "alt1";
} else {
$post[backcolor]="#1C5780";
$post[bgclass] = "alt2";
}
Below it add:
PHP Code:
if ($counter%2==0) {
$post[textcolor]="{firsttextcolor}";
$post[textclass] = "text1";
} else {
$post[textcolor]="{secondtextcolor}";
$post[textclass] = "text2";
Then just change the <font> tags color around the $post[message] variable in your 'postbit' template to suit.
Also you must create the {firsttextcolor} and {secondtextcolor} replacements
Let me know if it works
Regards
- miSt