Hi,
I am trying this as well on a dynamic list. It doesn't work. I've taken Sergiy's advice above and have put in the following code upon Page Show:
$("[name=list_of_offers] li:odd a").css('background-color','#9F9DC1');
$("[name=list_of_offers] li:odd a").css('color','#4D4A85');
$("[name=list_of_offers] li:even a").css('background-color','#4D4A85');
$("[name=list_of_offers] li:even a").css('color','#9F9DC1');
This works nicely on a static list but not a dynamic one where the items are drawn from a database.
Advice will be appreciated.