That worked a treat, Larkost, and you also added intuitively the extra code which I was needing. That was to get default data when no language had been set, thanks a lot.
Had been Googling for an hour for that or so without success, either my Google skills have started to fade or there is little documentation out there of XSL syntax, maybe time to buy a book.
Next problem, however. How do I add a hyperlink?
If I place...
Code:
<a href='<xsl:value-of select="url"/>'><xsl:value-of select="link"/></a>
in the xsl file it throws an error, and if I use this syntax in the xml file...
Code:
<a href="http://www.blabla.com">Bla Bla</a>
....I get the result of <a href="www.blabla.com>Bla Bla</a>
