aboutsummaryrefslogtreecommitdiffstats
path: root/stylesheets
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-05-19 23:44:41 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-05-19 23:44:41 +0000
commitcdb5a787761f3085c243ea0d68a5234ebc9bf225 (patch)
tree7cdc65e456aaaa87af5aa5236aca9236e7560bab /stylesheets
parent403278860896b2ab52b8d1d42480bc80fa65f26e (diff)
HEAD: StyleSheets - fixed the flow of h* tags.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3669 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets')
-rw-r--r--stylesheets/xhtml/lfs-mixed.xsl8
-rw-r--r--stylesheets/xhtml/lfs-titles.xsl4
2 files changed, 6 insertions, 6 deletions
diff --git a/stylesheets/xhtml/lfs-mixed.xsl b/stylesheets/xhtml/lfs-mixed.xsl
index d8f7cf64c..355938549 100644
--- a/stylesheets/xhtml/lfs-mixed.xsl
+++ b/stylesheets/xhtml/lfs-mixed.xsl
@@ -29,14 +29,14 @@
<xsl:if test="title">
<xsl:choose>
<xsl:when test="@role = 'materials'">
- <h3>
+ <h2>
<xsl:value-of select="title"/>
- </h3>
+ </h2>
</xsl:when>
<xsl:otherwise>
- <h4>
+ <h3>
<xsl:value-of select="title"/>
- </h4>
+ </h3>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
diff --git a/stylesheets/xhtml/lfs-titles.xsl b/stylesheets/xhtml/lfs-titles.xsl
index 78fd1f00c..db79fdee3 100644
--- a/stylesheets/xhtml/lfs-titles.xsl
+++ b/stylesheets/xhtml/lfs-titles.xsl
@@ -59,9 +59,9 @@
<xsl:if test="@id">
<a id="{@id}" name="{@id}"/>
</xsl:if>
- <h3 class="{name(.)}">
+ <h2 class="{name(.)}">
<xsl:value-of select="title"/>
- </h3>
+ </h2>
</div>
</xsl:otherwise>
</xsl:choose>