If we're only running WSS and not the MOSS components, we don't get the RSS Viewer web part. So we have to build our own out of the XML viewer web part and then we have to have an XSLT to render the feed's XML on screen. So, I'm have a little trouble with this. First, I've got a custom list called MyList with just an Item Title column and a Description column. Now, under List Settings I check the RSS Settings . If RSS isn't allowed at the Site, Site Collection or WebApp level in Central Admin, you won't see the RSS Settings for the list. So RSS is allowed and I'm checking Select All columns and click OK. I'm back at my list and I click on the Actions menu. I select View RSS Feed and I get the pretty rss feed page with a URL that looks like: http://MyServer/_layouts/listfeed.aspx?List=<some guid>. So, I copy the URL to the feed to my clipboard and I move to a web part page and add an XML Viewer web part. I open the tool pane and paste my URL in the XML Link field and click OK. What I end up with is a style-free version of the pretty rss feed page inside my web part. So, at this point, I simply need to transform my XML with and XML Style Sheet also called an XSLT. OK, the simplest XSLT I've been able to come up with looks like this: <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/"> <xsl:for-each select...