• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

xsl: problems to show images in Netscape

 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hey
i've tried different ways to show pictures in my navigation. everything is fine with IE 6 but with Netscape 7.1 i don't get my images.
<table width="200" cellspacing="0" cellpadding="0" border="0">
<xsl:for-each select="//GROUP">
<tr>
<td style="font-size:13; color:#00A3E6;">
<xsl:element name="image">
<xsl:attribute name="src">
PACKSHOT/TRIANGLE.gif</xsl:attribute>
<xsl:attribute name="width">16</xsl:attribute>
<xsl:attribute name="height">13</xsl:attribute>
<xsl:attribute name="border">0</xsl:attribute>
<xsl:attribute name="valign">center</xsl:attribute>
</xsl:element>
or
<image src="PACKSHOT/TRIANGLE.gif" valign="center" width="16" height="13" border="0"/>
</td>
does anyone know how what's the best way to show images with xsl in Netscape?
thanks
tom
[ December 19, 2003: Message edited by: Tom Brown ]
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<image ...> should probably be <img ...>
 
Tom Brown
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ooh my god, i always use img. don't know what went wrong :-)) have to sleep more. i guess i didn't see it because it worked in IE.
thanks a lot,
tom
 
reply
    Bookmark Topic Watch Topic
  • New Topic