Problem I have is I want to loop round the parents making them bold then get the children via the id:pid (parent id) and list them. My second loop doesn't work.
XML
XSL
<xsl:choose>
<xsl:when test="@PARENT_OBH_ID">
<b><xsl:value-of select="@TITLE"/></b>
<xsl:for-each select="FOOTER">
-<xsl:value-of select="@TITLE"/>
</xsl:for-each>
</xsl:when>
</xsl:choose>
</xsl:for-each>
Thanks