I have an address in the XML thats divided into parts.
In the XSL I'm displaying it like so:
The problem is that not all entries have a streetNumber value, but the   is always going to add a space before the streetName (making the presentation look a bit iffy on some of the pages).
Anyone got any solutions?
In the XSL I'm displaying it like so:
Code:
<xsl:value-of select="streetNumber" /><xsl:text> </xsl:text>
<xsl:value-of select="streetName" />,<br />
<xsl:value-of sel... etc etc
The problem is that not all entries have a streetNumber value, but the   is always going to add a space before the streetName (making the presentation look a bit iffy on some of the pages).
Anyone got any solutions?