Hi,
I tried the feed and it works ok for me both with & without an xslt stylesheet. (DNN 4.3.1). Here is the xslt i use. Copy the code below and create a new xslt stylesheet in your portal root...
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<xsl:output method="html" indent="yes"/>
<xsl:param name="TITLE"/>
<xsl:template match="rss/channel">
<xsl:variable name="link" select="link"/>
<xsl:variable name="description" select="description"/>
<table class="rssTableOuter">
<tr>
<td class="rssHeader">
<a href="{$link}" target ="_new"><xsl:value-of select="title" /></a>
<xsl:if test="description">
<br/>
<xsl:value-of select="description"/>
</xsl:if>
<xsl:if test="copyright">
<br/>
<xsl:value-of select="copyright"/>
</xsl:if>
</td>
</tr>
<xsl:for-each select="item[position() < 6]">
<tr>
<xsl:variable name="alternate_style" select="position() mod 2"/>
<td class="rssItem{$alternate_style}">
<br/>
<xsl:variable name="item_link" select="link"/>
<xsl:variable name="item_title" select="description"/>
<a href="{$item_link}" target ="_new">
<xsl:value-of select="title" disable-output-escaping="yes"/>
</a>
<xsl:if test="pubDate">
<br/>
<font color="green"
size="-2"><b><xsl:value-of
select="pubDate"/></b></font>
</xsl:if>
<xsl:if test="dc:creator">
<br/>
<font color="#CCA300"
size="-2"><b>Author:<xsl:value-of
select="dc:creator"/></b></font>
</xsl:if>
<xsl:if test="description">
<br/>
<font color="navy"><xsl:value-of
select="description" disable-output-escaping="yes"/></font>
</xsl:if>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
.... then select the stylsheet in the newsfeed settings;
I also added some css in portal.css as follows;
.rssTableOuter
{
border-spacing: 0;
width: 100%;
padding: 0;
}
.rssHeader
{
background-color: #0077B3;
color: white;
text-align: center;
padding: 10;
width: 100%;
}
.rssHeader a, .rssHeader a:hover, .rssHeader a:visited
{
font-size: 15px;
color: white;
}
.rssItem1
{
/*uncomment these lines if you want to alternate the styles for each newsfeed item.*/
/*background: aliceblue;*/
}
.rssItem0
{
/*background: lightyellow;*/
}