Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: opton
  • Order by date
  1. opton

    Add Text/Title to Image

    Still hoping for a solution on this if anyone can assist :)
  2. opton

    Add Text/Title to Image

    The xml is actually passed to a function as a string. You can see the set-up HERE Thanks for your continued assistance.
  3. opton

    Add Text/Title to Image

    <?xml version="1.0"?> <page> <overlay> <location infoStyle="http://www.mysite.com/file.xsl" id=""> <icon image="http://www.mysite.com/sample.gif" class="local"/> <info> <title>Some title here.</title> <address><line>Hello.</line></address> </info> </location> </overlay> </page> The above is the...
  4. opton

    Add Text/Title to Image

    Thanks.... <?xml version="1.0" ?> - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> - <xsl:template match="/"> <xsl:apply-templates select="location" /> </xsl:template> - <xsl:template match="location"> - <div style="padding-right: 8px; width: 14em">...
  5. opton

    Add Text/Title to Image

    I believe the image is called before the 'info template', but you know better than i do what is going on and how to fix it. Here is the code you requested. Info Template:<xsl:template match="info"> <xsl:variable name="page" select="../@arg0" /> <div style="margin-right: 6px"> <b>...
  6. opton

    Add Text/Title to Image

    I'm not very good with XML and XSL so i think i should go with the 'better answer' option :) I believe this is the applicable XSL code: <?xml version="1.0" ?> - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> - <xsl:template match="/"> <xsl:apply-templates...
  7. opton

    Add Text/Title to Image

    I have the following code which displays an image on the webpage: <icon image="http://www.mysite.com/sample.gif" class="local"/> I would like text to be displayed when the mouse hovers over the image (in standard HTML this would be done using: alt="description of gif" or title="description of...
  8. opton

    XSL: link open in new window

    FANTASTIC!! Works exactly as i need it to! :) Thank you so much for your help. I'm very to new to XML/XSL so i find it all very confusing, i'm grateful for users such as yourself who take the time to help out us newbies.
  9. opton

    XSL: link open in new window

    Hoping somebody can help. I have links that appear using XML/XSL and i would like to have those links open in a new browser window. Here is the part of the XLS code to create the links: <xsl:template match="piece"> <li> <xsl:variable name="href"> <xsl:value-of select="link" /> </xsl:variable>...

Part and Inventory Search

Back
Top