Hi,
I'm trying to create a 3 col lay out for my wordpress theme using the Blueprint CSS framework. The issue I'm having is on the index.php page.
Since I need to use 3 different divs, one for each post.
Div #1 should be something like this:
<div class="span-8 first">
post content here
</div>
Div #2 should be something like this:
<div class="span-8">
post content here
</div>
Div #3 should be something like this:
<div class="span-8 last">
post content here
</div>
How can I updated the loop for the posts to work with the 3 unique divs? I would also like this to be supported if the user looks through older posts but the actual post page will only be a single wide col.
Thanks for the help.