Is it possible to get an unique id/class code for the xslt menu navigation? As in: one link could have another css style.
Etc.
<xsl:attribute name="class">
<xsl:text>menu-link menu-id-<!--@Menu.ID--></xsl:text>
<xsl:if test="$inPath='True'">
<xsl:text> active-menu</xsl:text>
</xsl:if>
</xsl:attribute>
.menu-id-10{
background:red;
}