
From: Aline Manera <alinefm@br.ibm.com> We should use absolute paths to point to css or other link url to avoid directory struture dependencies. Fix it. Signed-off-by: Aline Manera <alinefm@br.ibm.com> --- ui/pages/help/dita-help.xsl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/pages/help/dita-help.xsl b/ui/pages/help/dita-help.xsl index 0821942..2ea1c38 100644 --- a/ui/pages/help/dita-help.xsl +++ b/ui/pages/help/dita-help.xsl @@ -8,8 +8,8 @@ <html> <head> <title><xsl:value-of select="/cshelp/title" /></title> - <link rel="shortcut icon" href="../images/logo.ico" /> - <link rel="stylesheet" type="text/css" href="kimchi.css" /> + <link rel="shortcut icon" href="/images/logo.ico" /> + <link rel="stylesheet" type="text/css" href="/help/kimchi.css" /> </head> <body> <xsl:apply-templates select="//cshelp" /> -- 1.7.10.4