Hi,
I am new to XSLT and I have an XML file in the format given below. For each item, I would like to diplay the img as a thumbnail (with the src from XML) and the title next to the image in each line:
================
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="test3.xsl"?>
<html xmlns

sl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0">
<item>
<title>CNN Title </title>
<link>http://www.cnn.com</link>
<description><img src="cnnImage.jpg" />This is CNN home page</description>
</item>
<item>
<title>Yahoo title</title>
<link>http://www.yahoo.com</link>
<description><img src="yahooImage.jpg" />This is yahoo home page</description>
</item>
</html>
==============
My code is this, however the image is not being displayed:
----------------------------
<xsl:stylesheet version="1.0" xmlns

sl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:template match="/">
<link rel="