Sure. You can put something in the stylesheet. If you're not concerned about IE 6, and unless you know of some reason why you should be, I would recommend not worrying about it, you can use max-width and max-height settings. For example:
Code:
#pscroller1 .rssdescription img {
max-width: 100px;
max-height: 100px;
}
You would of course want to adjust those values to your liking. What happens is whichever native dimension of the image is the most over whatever is set as max becomes the set max value and the other dimension is scaled to it. If both native dimensions are under the maxes, the image will render in its native size.
If you do want to support limiting the image size in IE 6, you can have an IE 6 specific stylesheet where you set just the width or just the height (not max for either, just width or height). The other dimension will scale to it. But smaller images will be enlarged. But only in IE 6 and less. Then do like (goes in the head of the page):
Code:
<!--[if lt IE 7]>
<style type="text/css">
#pscroller1 .rssdescription img {
width: 100px;
}
</style>
<![endif]-->
If you do this for IE 6, you should still do the max-width, max-height bit in the main stylesheet, that will be what is used by all other browsers.
Bookmarks