Here is the PHP that pushes out the rss elements, including the description:
echo "<h1>$item_title</h1>";
echo "<p><a href=".$item_url.">$rsstitle</a>, $city, $state, $country</p>";
// echo "<p>date(\"j, n, Y\", strtotime($item_date))</p>";
echo "<p>";
echo "Date:";
echo date("j, n, Y", strtotime($item_date));
echo "</p>";
//echo "<p>$item_date</p>";
echo "<p>$description</p>";
Within the $description are potentially one or more images from the source, hope that helps.
Another thought, should this be done via CSS maybe?
Thanks,
G