Uploaded image for project: 'FAQ'
  1. FAQ
  2. FAQ-12

Adding a CSS class to differentiate numbered lists

    • Icon: Improvement Improvement
    • Resolution: Fixed
    • Icon: Major Major
    • 1.2.0
    • 1.1.0
    • None

          <xsl:template name="questions-list">
              <ol>
                  <xsl:apply-templates select="metadata/questions/entry[question != '']" mode="list">
                      <xsl:with-param name="prefix" select="concat('content-', @name)"/>
                  </xsl:apply-templates>
              </ol>      
          </xsl:template>   
         
          <xsl:template name="questions-list-details">
              <ol class="questions">
                  <xsl:apply-templates select="metadata/questions/entry[question != '']">
                      <xsl:with-param name="prefix" select="concat('content-', @name)"/>
                  </xsl:apply-templates>
              </ol>      
          </xsl:template>
      
          <xsl:template name="questions-list">
              <ol class="questions">
                  <xsl:apply-templates select="metadata/questions/entry[question != '']" mode="list">
                      <xsl:with-param name="prefix" select="concat('content-', @name)"/>
                  </xsl:apply-templates>
              </ol>      
          </xsl:template>   
         
          <xsl:template name="questions-list-details">
              <ol class="answers">
                  <xsl:apply-templates select="metadata/questions/entry[question != '']">
                      <xsl:with-param name="prefix" select="concat('content-', @name)"/>
                  </xsl:apply-templates>
              </ol>      
          </xsl:template>
      

            laurence Laurence Aumeunier
            lperier Laurence Perier
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: