A Way to Feature the First Listing

2 posts by 2 authors in: Forums > CMS Builder
Last Post: June 12, 2009   (RSS)

By zip222 - June 12, 2009

I have a list page where I want to apply a unique css class to only the very first listing.

I am just using a basic foreach loop at the moment...

<?php foreach ($listingRecords as $record): ?>
<h3><?php echo $record['title'] ?></h3>
<h4><?php echo $record['year'] ?></h4>
<?php echo $record['introduction'] ?>
<?php endforeach; ?>


I want to wrap an extra <div> around the very first listing. Can you suggest a way to do this?