Hello,
In the /DesktopModules/News/RSS91.xsl
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>
<xsl:param name="TITLE"/>
<xsl:template match="rss">
<!-- Do not show channel image -->
<xsl:for-each select="channel/item">
<br>
<strong><a href="{link}" target="_main"><xsl:value-of select="title"/></a></strong><br></br>
<!-- only display markup for description if it's present -->
<xsl:value-of select="description"/>
</br>
<br></br>
</xsl:for-each>
</xsl:template>
<xsl:template match="description">
<br>
<xsl:value-of select="."/>
</br>
</xsl:template>
</xsl:stylesheet>
See the red title and description? The reason you're only seeing the title, and probably it's a link, is that you don't have the description in the xsl style sheet.
here's one item you have on your RSS feed
<item>
<title>RSS</title>
<author>MPouba</author>
<link>http://humnasutli.inet.hr/forum/topic.asp?TOPIC_ID=868</link>
<category>NewsFlash</category>
<pubDate>Sri., 21 Ruj. 2005. 17:06:29 +0100</pubDate>
<guid>http://humnasutli.inet.hr/forum/topic.asp?TOPIC_ID=868</guid>
</item>
See how the red and green colors match on these 2? You'll need to match the available fields in the /DesktopModules/News/RSS91.xsl to make them showing up on your News module. Don't remove the <xsl:value-of select="description"/> from your XSL file as you might want the descriptions to show up with other feeds. Just keep adding the needed <xsl:value tags into the XSL. Your RSS feed seems pretty much standard format so it doesn't hurt if you just add all of them.