<ul>/<ol> lists configuration
Posted: Wed Nov 14, 2012 7:16 pm
I want to increase the space between the list number and the list content, and also I want to make the list number normal, not in bold.
I almost modified every number in list-attr.xsl, but nothing happened.
Any help appreciate.
Thanks,
Ivy
I almost modified every number in list-attr.xsl, but nothing happened.
Code: Select all
<!--Ordered list-->
<xsl:attribute-set name="ol" use-attribute-sets="common.block">
<xsl:attribute name="provisional-distance-between-starts">50mm</xsl:attribute>
<xsl:attribute name="provisional-label-separation">1mm</xsl:attribute>
<xsl:attribute name="margin-left">36pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="ol.li">
<xsl:attribute name="space-after">1.5pt</xsl:attribute>
<xsl:attribute name="space-before">36pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="ol.li__label">
<xsl:attribute name="keep-together.within-line">always</xsl:attribute>
<xsl:attribute name="keep-with-next.within-line">always</xsl:attribute>
<xsl:attribute name="end-indent">label-end()</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="ol.li__label__content">
<xsl:attribute name="text-align">start</xsl:attribute>
<!-- <xsl:attribute name="font-weight">bold</xsl:attribute> -->
</xsl:attribute-set>
<xsl:attribute-set name="ol.li__body">
<xsl:attribute name="start-indent">body-start()</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="ol.li__content">
</xsl:attribute-set>
Thanks,
Ivy