zpellzlinger
n00b
- Joined
- Jul 27, 2006
- Messages
- 50
My xsl document does not seem to render my style sheet correctly. This is how I declared the style sheet: (BTW I am using firefox)
<xsl:template match="/">
<html>
The following links show what happens. (These links are temporary)
XHTML with desired results:
http://cse.unl.edu/~tnichols/xcse464x/temp/tournaments.html
XSL with undesirable results:
http://cse.unl.edu/~tnichols/xcse464x/2/tournaments.xml
Is there another way to declare the style sheet so the xsl renders it correctly?
A hack fix would be to set the px height but this is somewhat undesirable for obvious reasons.
Any suggestions?
thanx

<xsl:template match="/">
<html>
<head><title> Gladiators of New </title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
Bla bla
</body>
</html>
</xsl:template>The following links show what happens. (These links are temporary)
XHTML with desired results:
http://cse.unl.edu/~tnichols/xcse464x/temp/tournaments.html
XSL with undesirable results:
http://cse.unl.edu/~tnichols/xcse464x/2/tournaments.xml
Is there another way to declare the style sheet so the xsl renders it correctly?
A hack fix would be to set the px height but this is somewhat undesirable for obvious reasons.
Any suggestions?
thanx
