Here's my current code:
This is the line that I think is causing issues (line 7, below):
Code:
<img src="{source}" width="100" height="100" onmouseover="MM_swapImage('{../mainImageName}','','{source}',1)" />
XSL/HTML
Code:
<xsl:for-each select="category/project">
<hr width="80%" size="1px" color="#999999" />
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<xsl:for-each select="image">
<td><a href="{source}">
<img src="{source}" width="100" height="100" onmouseover="MM_swapImage('{../mainImageName}','','{source}',1)" />
</a></td>
</xsl:for-each>
</tr>
</table>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr align="left">
<td height="12" valign="top"><xsl:value-of select="name"/></td>
<td rowspan="3" align="right" width="550">
<a href="{image/source}"><img src="{image/source}" name="{mainImageName}" width="550" /></a>
</td>
</tr>
<tr align="left">
<td height="12" valign="top">Location: <xsl:value-of select="location"/></td>
</tr>
<tr align="left">
<td valign="top"><xsl:value-of select="caption"/></td>
</tr>
</table>
</xsl:for-each>
XML
Code:
<category name="Custom Homes">
<project>
<name>Project Name 1</name>
<beginMonth>Jan</beginMonth>
<beginYear>01</beginYear>
<endMonth>Dec</endMonth>
<endYear>03</endYear>
<location>San Diego</location>
<mainImageName>projectName1</mainImageName>
<image>
<title>boa01</title>
<source>images/pictures/boa.jpg</source>
</image>
<image>
<title>boa02</title>
<source>images/pictures/building.jpg</source>
</image>
<image>
<title>boa03</title>
<source>images/pictures/boa.jpg</source>
</image>
<image>
<title>boa04</title>
<source>images/pictures/boa.jpg</source>
</image>
<image>
<title>boa05</title>
<source>images/pictures/boa.jpg</source>
</image>
<caption>This is a caption.</caption>
</project>
<project>
<name>dillydally</name>
<beginMonth>Jan</beginMonth>
<beginYear>01</beginYear>
<endMonth>Dec</endMonth>
<endYear>03</endYear>
<location>wherever</location>
<mainImageName>mainImage2</mainImageName>
<image>
<title>boa</title>
<source>images/pictures/boa.jpg</source>
</image>
<image>
<title>boa</title>
<source>images/pictures/boa.jpg</source>
</image>
<image>
<title>boa</title>
<source>images/pictures/boa.jpg</source>
</image>
<image>
<title>boa</title>
<source>images/pictures/boa.jpg</source>
</image>
<caption>This is a caption.</caption>
</project>
</category>
Bookmarks