How do I remove the blank line from element generated via XML?

Adammmm

New Member
I'm modifying an xml.config file, and it is generating a blank line above a link. Not sure why its happening. How can I have it removed? Here is the xml.config code for the list element:\[code\] <li> <xsl:value-of select="$prefix" /> <xsl:if test="number(ParentEntityID) != 0"> <!-- <span class="catMark">>></span>  --> </xsl:if> <a href="http://stackoverflow.com/questions/11527386/{concat('c-',EntityID,'-',ise:FormatStringForLink(SEName),'.aspx')}"> <xsl:if test="EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID"> <xsl:attribute name="style">font-weight:bold</xsl:attribute> </xsl:if> <xsl:value-of select="$eName"/> </a> <xsl:if test="count(child::Entity)>0 and (EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID)"> <ul> <xsl:apply-templates select="Entity"> <xsl:with-param name="prefix" select="concat($prefix, '  ')"/> </xsl:apply-templates> </ul> </xsl:if> </li>\[/code\]When the page loads, it turns into this:\[code\]<li> &nbsp;&nbsp; <a href="http://stackoverflow.com/questions/11527386/c-56-holiday.aspx">Holiday</a></li>\[/code\]
fQ4lE.png
 
Back
Top