I'm having a MultiBlog problem. I'm trying to make the second entry to be listed to have a different appearance then the other entries. ie. change the div tag. I've tried IF tags with the __odd__ and __even__ variable like the comment recipe in the wiki, but it doesn't work.
Here's my code:
On the main index:
CODE
<MTMultiBlog include_blogs="1,2,4" lastn="3">
<MTEntries lastn="1">
<$MTInclude module="Entry Blog"$>
</MTEntries>
</MTMultiBlog>
<MTEntries lastn="1">
<$MTInclude module="Entry Blog"$>
</MTEntries>
</MTMultiBlog>
In the Entry Blog module:
CODE
<div id="blogs-item">
<mt:EntryAssets>
<a href="<$MTEntryPermalink$>"><img src="<mt:AssetThumbnailURL width="164" />" /></a>
</mt:EntryAssets>
<h1 class="index-titles"><a href="<$MTEntryPermalink$>"><$MTEntryTitle$></a></h1>
<MTIfNonEmpty tag="EntryBody">
<p>
<$MTEntryExcerpt words="20"$>
</p>
</MTIfNonEmpty>
</div>
<mt:EntryAssets>
<a href="<$MTEntryPermalink$>"><img src="<mt:AssetThumbnailURL width="164" />" /></a>
</mt:EntryAssets>
<h1 class="index-titles"><a href="<$MTEntryPermalink$>"><$MTEntryTitle$></a></h1>
<MTIfNonEmpty tag="EntryBody">
<p>
<$MTEntryExcerpt words="20"$>
</p>
</MTIfNonEmpty>
</div>
Where and how would I setup an If statement to get the second entry to list the have a different css tag than the other 2 entries?
I just can't get it.
Thank You