This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: website: tabular.xsl - navbgcolor


I wrote:
 
> In "tabular.xsl" there is a param named "navbgcolor" but I don't see
> how this param is used in the XSL-files. I'd expect this param to be
> used as "bgcolor" for the navigation column. Or do I miss something?

After applying the attached patch to chunk-tabular.xsl it works like 
I'd expect.

Michael
-- 
office:  michael.wiedmann@detewe.de
private: mw@miwie.in-berlin.de                 http://www.miwie.org/
         mw@miwie.org                          http://wap.miwie.org/
--- chunk-tabular.xsl	Fri Nov 10 16:02:57 2000
+++ chunk-tabular.xsl-mw	Mon Nov 20 14:30:08 2000
@@ -75,7 +75,7 @@
 	      </xsl:attribute>
 	    </xsl:if>
 	    <tr>
-	      <td width="{$navtocwidth}" valign="top" align="left" rowspan="3">
+	      <td width="{$navtocwidth}" bgcolor="{$navbgcolor}" valign="top" align="left" rowspan="3">
 		<p class="navtoc">
 		  <xsl:call-template name="nav.toc">
 		    <xsl:with-param name="pages" select="/website/webpage"/>
@@ -187,7 +187,7 @@
 	      </xsl:attribute>
 	    </xsl:if>
 	    <tr>
-	      <td width="{$navtocwidth}" valign="top" align="left">
+	      <td width="{$navtocwidth}" bgcolor="{$navbgcolor}" valign="top" align="left">
 		<p class="navtoc">
 		  <xsl:call-template name="nav.toc">
 		    <xsl:with-param name="pages" select="/website/webpage"/>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]