[docbook-apps] Should ie.css be included by default in the generated webhelp files?

2012-06-05 Thread Derek Van Kooten
I am using version 1.77.0 I noticed that the generated webhelp files do not look correct in Microsoft Internet Explorer. I dug into it a little to see what was going on. The div named content doesnt have padding-top css attribute being set. The include for ie.css is missing in the generated

Re: [docbook-apps] Should ie.css be included by default in the generated webhelp files?

2012-06-05 Thread Peter Desjardins
Have you tried the xsl:comment element? http://zvon.org/comp/r/ref-XSLT_1.html#Elements~comment Peter On Tue, Jun 5, 2012 at 12:34 PM, Derek Van Kooten derek...@gmail.com wrote: I am using version 1.77.0 I noticed that the generated webhelp files do not look correct in Microsoft Internet

Re: [docbook-apps] Should ie.css be included by default in the generated webhelp files?

2012-06-05 Thread David Cramer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ok, guess that's a bug in webhelp. This is how I have that in my customization layer: xsl:commentxsl:text[if IE] lt;link rel=stylesheet type=text/css href=../common/css/ie.css/ lt;![endif]/xsl:text/xsl:comment David On

Re: [docbook-apps] Should ie.css be included by default in the generated webhelp files?

2012-06-05 Thread Carlos Araya
David: I think you need to close the xsl:text element on the first line of your comment. I think it should be xsl:commentxsl:text[if IE]/xsl:text Carlos On Jun 5, 2012, at 9:57 AM, David Cramer wrote: Ok, guess that's a bug in webhelp. This is how I have that in my customization layer:

Re: [docbook-apps] striped table border colors

2012-06-05 Thread Gregorio Pevaco
Bob: Thank you so much for taking the time to thoroughly explain in as much detail. This was all very helpful information. Turns out my original approach was much closer than I had even thought, and a couple additions to my customization layer did the trick!! The stylesheets are quite a

Re: [docbook-apps] Should ie.css be included by default in the generated webhelp files?

2012-06-05 Thread David Cramer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Carlos, Actually, it ends up working out ok since I've escaped the signs as lt; inside the xsl:text. Those come out as in the generated html. This is in the customization layer that produces the books posted here, so I know it works :-)

Re: [docbook-apps] Should ie.css be included by default in the generated webhelp files?

2012-06-05 Thread Carlos Araya
David: That's good to know... I always thought that elements without a closing match were to be reported as errors by XSL parsers. Carlos On Jun 5, 2012, at 12:11 PM, David Cramer wrote: Hi Carlos, Actually, it ends up working out ok since I've escaped the signs as lt; inside the