Been toying with this for some time... I have an xml file with the following lines
<image size="small">image_small.jpg</image>
<image size="medium">image_medium.jpg</image>
<image size="large">image_large.jpg</image>
ANy ideas on how I can just get the medium url for example.
currently I have... but its not doing the trick
<tr>
<td><img><xsl:attribute name="src">
<xsl:value-of select="image/@size[@size=medium]" />
</xsl:attribute>
</img>
</td>
</tr>
Thanks in advance