[xsl] CSS not found when using Firefox

Subject: [xsl] CSS not found when using Firefox
From: "Alan Varga" <aevarga@xxxxxx>
Date: Thu, 8 Jun 2006 07:31:11 -0500
Can anyone explain why my XML doc displays with proper formatting in IE but not in Firefox? I am guessing it has to do with Firefox's inability to process the absolute path in my XSL file, which changes depending on whether I use this at work or at home (home is D:, work is P:) Is this an XSLT problem or a Firefox problem?


~~~~~ start of XSL file ~~~~~ <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="html"/>
<xsl:variable name="common_folder" select="'D:/Program2/Varga/Common Files/'" />


<xsl:template match="/">
<html>
 <head>
   <link type="text/css"
         media="screen, print"
         rel="stylesheet"
         href="{$common_folder}alansdefault2.css"/>
   <title><xsl:value-of select="document/pageheader/header1"/></title>
 </head>
~~~~~ end of XSL file ~~~~~


Thanks, Alan


Current Thread