Hallo, also ich hab folgendes Problem: im IE funkt der Code einwandfrei, ich seh die XML-Datei formatiert wie ich des wollte, aber im Firefox seh ich nur die Inhalte, nicht die Formatierung. Bin noch XML-Neuling, hab also keine Ahnung, ob was am Code net stimmt. Brauche aber dringend Hilfe
Also hier mal mein Code:
Die XML-Datei
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="style.xsl" ?>
<bookmarks>
<bookmark id='1' private='no'>
<name>Google</name>
<url>http://www.google.de</url>
<description></description>
</bookmark>
<bookmark id='2' private='no'>
<name>Lycos</name>
<url>http://www.lycos.de</url>
<description></description>
</bookmark>
<bookmark id='3' private='no'>
<name>meine Seite</name>
<url>http://dllz.cybton.com</url>
<description></description>
</bookmark>
</bookmarks>
Die XSL Datei
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/xhtml1/strict">
<xsl:template match="name">
<span align="center" style="font-family:Tahoma; font-size:20px; color:red">
<xsl:value-of select="." />
</span><br />
</xsl:template>
<xsl:template match="url">
<a href="">
<xsl:value-of select="." />
</a><br />
</xsl:template>
</xsl:stylesheet>
Vielleicht kann mir ja auch jemand sagen, wie ich bei <a hre=''> die url hinbekomm.
Mfg Dominik
Also hier mal mein Code:
Die XML-Datei
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="style.xsl" ?>
<bookmarks>
<bookmark id='1' private='no'>
<name>Google</name>
<url>http://www.google.de</url>
<description></description>
</bookmark>
<bookmark id='2' private='no'>
<name>Lycos</name>
<url>http://www.lycos.de</url>
<description></description>
</bookmark>
<bookmark id='3' private='no'>
<name>meine Seite</name>
<url>http://dllz.cybton.com</url>
<description></description>
</bookmark>
</bookmarks>
Die XSL Datei
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/xhtml1/strict">
<xsl:template match="name">
<span align="center" style="font-family:Tahoma; font-size:20px; color:red">
<xsl:value-of select="." />
</span><br />
</xsl:template>
<xsl:template match="url">
<a href="">
<xsl:value-of select="." />
</a><br />
</xsl:template>
</xsl:stylesheet>
Vielleicht kann mir ja auch jemand sagen, wie ich bei <a hre=''> die url hinbekomm.
Mfg Dominik
Kommentar