This is specifically an XSL question....not a DNN question, per se. But I'm hoping someone can offer some insight.
I'm using the XML/XSL Module to display data in "pages." I tweaked the paging code that is part of the UDT XSL generator.
The section in question that I'm struggling with is:
<xsl:template name="pagingSinglePages">
<xsl:param name="pageNumber" select="1" />
<xsl:param name="maxPages" select="ceiling(count($bookcount) div $itemsperpage)" />
<xsl:choose>
<xsl:when test="$param_page=$pageNumber">
[<xsl:value-of select="$pageNumber" />] 
</xsl:when>
<xsl:otherwise>
<a href="?sp={$pageNumber}">
<xsl:value-of select="$pageNumber" />
</a>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$pageNumber < $maxPages">
<xsl:call-template name="pagingSinglePages"><xsl:with-param name="pageNumber" select="$pageNumber +1" /><xsl:with-param name="maxPages" select="$maxPages" /></xsl:call-template>
</xsl:if>
</xsl:template>
If you visit http://www.devodog.us/Comics/ComicsA/tabid/159/Default.aspx, you'll see what I mean. I can't seem to get spacing correct in the First, Previous, #, Next, Last section. I'm tried adding   code, but it's being ignored when the page is rendered.