I'm trying to display categories in a list form. Basically, every category (item) in the loop has different style. So I need to display item 1 in one style, item 2, 3, 4 in another style and rest of the items in another style. How do I frame the wordpress for loop structure?
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
// My Content
} // end while
} // end if
?>