The thumbnail images can easily sized by placing something like this in your theme's css stylesheet:
.image-feed-small a img { max-height: 100px; max-width: 100px; }
The above css code will apply to all widgets. You can use "height" and "width" instead of "max-height" and "max-width" if you prefer.
Easy too, the content of the widget is a list, so you just need to add this to your theme's css stylesheet:
image-feed-list { display: inline; }
you must of course specify a width that allows more than one image to fit in your sidebar...
Anywhere in your theme templates, you can display a list of images coming from rss feeds. Just place the following code where you want the images to appear:
<?php get_image_feed_list($feedslist, $maxfeeds, $divname, $printtext, $target); ?>
Where: * $feedlist is a comma-separated list of rss feed urls (mandatory) * $maxfeeds is the maximum number of images to display (optional, default = 90) * $divname is a name suffix for the list class. "myList" will become "image-feed-myList" (optional) * $printtext must be 1 if you want the image title to be printed below the image (optional) * $target is "samewindow" or "newwindow", depending on where you want links to open (optional, default = samewindow)
Example:
<?php get_image_feed_list("http://www.example1.com/rss,http://www.example2.com/rss2", 10, "myImagesList"); ?>




